Skip to content

Commit

Permalink
chore: update GitHub Actions (#548)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonli-improving authored Feb 1, 2024
1 parent 2fa2c7b commit c60c506
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Clone Repository'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 50
- name: 'Set up JDK 8'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maven_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Clone Repository'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 50
- name: 'Set up JDK 8'
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 8
- name: 'Build Driver'
Expand All @@ -27,7 +27,7 @@ jobs:
base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg
- name: 'Install GPG Secret Key'
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v4
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maven_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Clone Repository'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 50
- name: 'Set up JDK 8'
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 8
- name: 'Build Driver'
Expand All @@ -28,7 +28,7 @@ jobs:
base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg
- name: 'Install GPG Secret Key'
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v4
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Clone Repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50
- name: 'Set up JDK 8'
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: 8
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
AWS_SESSION_TOKEN: ${{ env.TEMP_AWS_SESSION_TOKEN }}
- name: 'Archive junit results'
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'performance-report'
path: build/reports/tests/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Clone Repository'
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 50
- name: 'Set up JDK 8'
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 8
- name: 'Build Driver'
Expand All @@ -40,7 +40,7 @@ jobs:
echo "$RELEASE_DETAILS" > RELEASE_DETAILS.md
- name: 'Install GPG Secret Key'
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v4
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down

0 comments on commit c60c506

Please sign in to comment.