Skip to content

Commit

Permalink
chore(deps): update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed May 12, 2024
1 parent e8f5dea commit 30159e2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-detect-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- name: Detect changed files
id: changed-files
uses: tj-actions/changed-files@56284d80811fb5963a972b438f2870f175e5b7c8 # v40.2.3
uses: tj-actions/changed-files@a29e8b565651ce417abb5db7164b4a2ad8b6155c # v44.4.0
with:
files: ${{ inputs.files }}
files_ignore: ${{ inputs.files-ignore }}
Expand Down
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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # 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@65462800fd760344b1a7b4382951275a0abb4808 # 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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # 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@65462800fd760344b1a7b4382951275a0abb4808 # v4
with:
retention-days: 3
name: ${{ inputs.upload-artifact-name }}
Expand Down
16 changes: 8 additions & 8 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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4

- name: Decompress all artifacts to current directory
run: ls **/*.zip | xargs -n1 7z x -aoa
Expand All @@ -261,7 +261,7 @@ jobs:

- name: CodeClimate
if: steps.secrets.outputs.CC_TEST_REPORTER_ID
uses: paambaati/codeclimate-action@a1831d7162ea1fbc612ffe5fb3b90278b7999d59 # v5.0.0
uses: paambaati/codeclimate-action@b74bb25d2074a4bc16bd06fffc1b299c07b1f886 # v6.0.0
env:
CC_TEST_REPORTER_ID: ${{ steps.secrets.outputs.CC_TEST_REPORTER_ID }}
with:
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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4
with:
name: compiled-libs
- name: Decompress Libs
Expand All @@ -325,15 +325,15 @@ jobs:
run: npm run version:print >> $GITHUB_STEP_SUMMARY

- name: Upload changelog
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4
with:
retention-days: 3
name: changelog
path: |
CHANGELOG.md
- name: Upload package.json files
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4
with:
retention-days: 3
name: package-json
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
install-command: make BOOTSTRAP_SCOPE=site install

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

Expand All @@ -395,14 +395,14 @@ 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@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4
continue-on-error: true
with:
name: changelog

- name: Download package.json files
if: github.ref == 'refs/heads/main'
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4
continue-on-error: true
with:
name: package-json
Expand Down

0 comments on commit 30159e2

Please sign in to comment.