Skip to content

Commit

Permalink
fix(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 21, 2024
1 parent b2dff87 commit 86d935d
Show file tree
Hide file tree
Showing 4 changed files with 452 additions and 378 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
check-latest: true
distribution: temurin
java-version: ${{ matrix.java }}
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-maven-artifacts
with:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Check Java codestyle
run: mvn com.spotify.fmt:fmt-maven-plugin:check
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
check-latest: true
node-version: 12
Expand All @@ -50,9 +50,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-maven-artifacts
with:
Expand All @@ -61,16 +61,16 @@ jobs:
~/.m2/repository
**/target
- name: Publish code coverage reports
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
publish:
if: (github.event_name == 'push' && (contains(github.ref, 'main') || startsWith(github.ref, 'release/'))) || github.event_name == 'release'
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-maven-artifacts
with:
Expand All @@ -85,7 +85,7 @@ jobs:
# Publish snapshot
- name: Set up JDK 17 for publishing a snapshot
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
check-latest: true
distribution: temurin
Expand All @@ -102,7 +102,7 @@ jobs:
# Publish release
- name: Set up JDK 17 for publishing a release
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
check-latest: true
distribution: temurin
Expand Down
Loading

0 comments on commit 86d935d

Please sign in to comment.