Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 12, 2023
1 parent a8b701a commit 34aec48
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-renovatebot-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Validate
uses: suzuki-shunsuke/[email protected]
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Extract metadata to env variables
uses: HSLdevcom/jore4-tools/github-actions/extract-metadata@extract-metadata-v1
Expand All @@ -29,15 +29,15 @@ jobs:
docker pull $IMAGE_NAME:latest || >&2 echo "Previous image not found"
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: 'arm64'

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.JORE4_DOCKERHUB_USER }}
password: ${{ secrets.JORE4_DOCKERHUB_TOKEN }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Extract metadata to env variables
uses: HSLdevcom/jore4-tools/github-actions/extract-metadata@extract-metadata-v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-jooq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start databases (blocking until up)
run: ./development.sh start:devdeps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start databases and map-matching service
run: ./development.sh start
Expand Down
14 changes: 7 additions & 7 deletions spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>

<!-- Maven build plugins and their dependencies -->
<build-helper-plugin.version>3.2.0</build-helper-plugin.version>
<build-properties-plugin.version>1.0.0</build-properties-plugin.version>
<build-helper-plugin.version>3.4.0</build-helper-plugin.version>
<build-properties-plugin.version>1.2.0</build-properties-plugin.version>
<maven-compiler.plugin.version>3.11.0</maven-compiler.plugin.version>
<surefire-plugin.version>2.22.2</surefire-plugin.version>
<surefire-plugin.version>3.1.2</surefire-plugin.version>

<!-- Library versions -->
<arrow-core.version>1.1.3</arrow-core.version>
<geolatte.version>1.9.0</geolatte.version>
<kotlin-logging-jvm.version>3.0.2</kotlin-logging-jvm.version>
<arrow-core.version>1.2.1</arrow-core.version>
<geolatte.version>1.9.1</geolatte.version>
<kotlin-logging-jvm.version>3.0.5</kotlin-logging-jvm.version>
<quicktheories.version>0.26</quicktheories.version>

<!-- Other properties -->
Expand Down Expand Up @@ -310,7 +310,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>enforce-versions</id>
Expand Down

0 comments on commit 34aec48

Please sign in to comment.