Skip to content

Commit

Permalink
Upgrade github actions to latest versions (#17)
Browse files Browse the repository at this point in the history
Motivation:

We used outdated versions of github actions in workflow

Modifications:

Update actions

Result:

Use latest versions
  • Loading branch information
normanmaurer authored Feb 21, 2024
1 parent 7cf135a commit 547449e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
ref: main

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: zulu
Expand All @@ -54,7 +54,7 @@ jobs:
key: ${{ secrets.SSH_PRIVATE_KEY_PEM }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}

- uses: s4u/maven-settings-action@v2.8.0
- uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
Expand All @@ -64,7 +64,7 @@ jobs:
}]
# Cache .m2/repository
- uses: actions/cache@v3
- uses: actions/cache@v4
continue-on-error: true
with:
path: ~/.m2/repository
Expand Down

0 comments on commit 547449e

Please sign in to comment.