Skip to content

Commit

Permalink
chore(deps): update github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Dec 18, 2023
1 parent cedd622 commit dc51049
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-integration-test-step.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Download artifact(s)
if: ${{ inputs.download-artifact-name || inputs.download-artifact-path }}
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: ${{ inputs.download-artifact-name }}
path: ${{ inputs.download-artifact-path }}
Expand All @@ -107,7 +107,7 @@ jobs:

- name: Upload artifact
if: ${{ inputs.upload-artifact-name && inputs.upload-artifact-path }}
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4
with:
retention-days: 3
name: ${{ inputs.upload-artifact-name }}-${{ matrix.module }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-node-step.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Download artifact
if: ${{ inputs.download-artifact-name || inputs.download-artifact-path }}
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: ${{ inputs.download-artifact-name }}
path: ${{ inputs.download-artifact-path }}
Expand All @@ -96,7 +96,7 @@ jobs:

- name: Upload artifact
if: ${{ inputs.upload-artifact-name && inputs.upload-artifact-path }}
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4
with:
retention-days: 3
name: ${{ inputs.upload-artifact-name }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:
install-command: npm ci

- name: Download all artifacts
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4

- name: Decompress all artifacts to current directory
run: ls **/*.zip | xargs -n1 7z x -aoa
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
npm_token: ${{ secrets.NPM_TOKEN }}

- name: Download compiled libs
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: compiled-libs
- name: Decompress Libs
Expand All @@ -325,7 +325,7 @@ jobs:
run: npm run version:print >> $GITHUB_STEP_SUMMARY

- name: Upload changelog
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4
with:
retention-days: 3
name: changelog
Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:
install-command: make BOOTSTRAP_SCOPE=site install

- name: Download compiled libs
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
with:
name: 'compiled-libs'

Expand All @@ -386,7 +386,7 @@ jobs:
# We generate an updated changelog only when there are artifacts to be published
- name: Download changelog
if: github.ref == 'refs/heads/main'
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3c67110 # v4
continue-on-error: true
with:
name: changelog
Expand Down

0 comments on commit dc51049

Please sign in to comment.