Skip to content

Commit

Permalink
Fix usage of settings actions during deploy workflow (java-native-acc…
Browse files Browse the repository at this point in the history
…ess#671)

Motivation:

We introduced a bug when updating the actions.

Modifications:

Fix version of settings action

Result:

Deploy workflow works again
  • Loading branch information
normanmaurer authored Feb 15, 2024
1 parent 2e09972 commit bee4138
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
restore-keys: |
stage-snapshot-${{ matrix.setup }}-maven-cache-
- uses: s4u/maven-settings-action@v3
- uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
restore-keys: |
stage-snapshot-windows-x86_64-maven-cache-
- uses: s4u/maven-settings-action@v2.8.0
- uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Merge staging repositories
run: bash ./.github/scripts/merge_local_staging.sh ~/local-staging ~/windows-x86_64-local-staging ~/linux-aarch64-local-staging ~/linux-x86_64-local-staging

- uses: s4u/maven-settings-action@v2.8.0
- uses: s4u/maven-settings-action@v3.0.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 @@ -44,7 +44,7 @@ jobs:
continue-on-error: ${{ matrix.ignore-if-missing }}
steps:
- name: Download Artifacts
uses: dawidd6/action-download-artifact@v2.28.0
uses: dawidd6/action-download-artifact@v3.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: ${{ github.event.workflow_run.workflow_id }}
Expand All @@ -53,7 +53,7 @@ jobs:
# File location set in ci-pr.yml and must be coordinated.
name: test-results-${{ matrix.setup }}
- name: Publish Test Report
uses: scacap/[email protected].2
uses: scacap/[email protected].3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: '**/target/surefire-reports/TEST-*.xml'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
restore-keys: |
staging-${{ matrix.setup }}-maven-cache-
- uses: s4u/maven-settings-action@v2.8.0
- uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
restore-keys: |
stage-release-windows-x86_64-maven-cache-
- uses: s4u/maven-settings-action@v2.8.0
- uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
restore-keys: |
deploy-staged-release-maven-cache-
- uses: s4u/maven-settings-action@v3
- uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[{
Expand Down

0 comments on commit bee4138

Please sign in to comment.