Skip to content

Commit

Permalink
Update actions to latest version (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
normanmaurer authored Oct 5, 2023
1 parent 5989855 commit 1256220
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,19 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: main

- name: Set up JDK 8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 8
distribution: zulu

- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand All @@ -53,7 +54,7 @@ jobs:
key: ${{ secrets.SSH_PRIVATE_KEY_PEM }}
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }}

- uses: s4u/maven-settings-action@v2.2.0
- uses: s4u/maven-settings-action@v2.8.0
with:
servers: |
[{
Expand All @@ -63,7 +64,8 @@ jobs:
}]
# Cache .m2/repository
- uses: actions/cache@v2
- uses: actions/cache@v3
continue-on-error: true
with:
path: ~/.m2/repository
key: release-cache-m2-repository-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- os: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
Expand Down

0 comments on commit 1256220

Please sign in to comment.