Skip to content

Commit

Permalink
Update GH actions version. (#13245)
Browse files Browse the repository at this point in the history
Motivation:
We've updated gh actions for Netty 4. but not Netty 5 yet.

Modification:
Upgrade multiple gh actions versions to latest.

Result:
Latest actions version.
  • Loading branch information
jchrys committed Feb 27, 2023
1 parent 1365e22 commit 645ff1e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
cat ~/linux-x86_64-java11-local-staging/deferred/.index >> ~/local-staging/deferred/.index
cp -r ~/linux-x86_64-java11-local-staging/deferred/* ~/local-staging/deferred/
- uses: s4u/maven-settings-action@v2.2.0
- uses: s4u/maven-settings-action@v2.8.0
with:
servers: |
[{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-pr-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
continue-on-error: ${{ matrix.ignore-if-missing }}
steps:
- name: Download Artifacts
uses: dawidd6/action-download-artifact@v2.19.0
uses: dawidd6/action-download-artifact@v2.26.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: ${{ github.event.workflow_run.workflow_id }}
Expand All @@ -47,7 +47,7 @@ jobs:
# File location set in ci-pr.yml and must be coordinated.
name: test-results-${{ matrix.setup }}
- name: Publish Test Report
uses: scacap/action-surefire-report@v1.0.13
uses: scacap/action-surefire-report@v1.4.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: '**/target/surefire-reports/TEST-*.xml'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ jobs:
runs-on: ubuntu-latest
needs: verify-pr
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Cache .m2/repository
- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-build-pr-aarch64-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -185,12 +185,12 @@ jobs:

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-results-${{ matrix.setup }}
path: '**/target/surefire-reports/TEST-*.xml'

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: build-${{ matrix.setup }}-target
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-release-5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
${{ runner.os }}-staging-docker-cache-${{ matrix.setup }}-
${{ runner.os }}-staging-docker-cache-
- uses: s4u/maven-settings-action@v2.2.0
- uses: s4u/maven-settings-action@v2.8.0
with:
servers: |
[{
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
working-directory: ./prepare-release-workspace/
run: bash ./.github/scripts/merge_local_staging.sh /home/runner/local-staging/staging ~/linux-aarch64-local-staging/staging ~/linux-x86_64-java11-local-staging/staging

- uses: s4u/maven-settings-action@v2.2.0
- uses: s4u/maven-settings-action@v2.8.0
with:
servers: |
[{
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
${{ runner.os }}-staging-docker-cache-${{ matrix.setup }}-
${{ runner.os }}-staging-docker-cache-
- uses: s4u/maven-settings-action@v2.2.0
- uses: s4u/maven-settings-action@v2.8.0
with:
servers: |
[{
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
working-directory: ./prepare-release-workspace/
run: bash ./.github/scripts/merge_local_staging.sh /home/runner/local-staging/staging ~/linux-aarch64-local-staging/staging ~/linux-x86_64-java11-local-staging/staging

- uses: s4u/maven-settings-action@v2.2.0
- uses: s4u/maven-settings-action@v2.8.0
with:
servers: |
[{
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ jobs:
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11' # The JDK version to make available on the path.

- name: Compile project
Expand Down

0 comments on commit 645ff1e

Please sign in to comment.