diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 9dd260d5a6..24d9169c67 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -46,7 +46,7 @@ jobs: run: yarn update-package ${{ inputs.docFolder }}/package.json --name ${{ inputs.packageName }} --version ${{ inputs.version }} - run: zip -q -r ${{ inputs.artifactName }}.zip "${{ inputs.docFolder }}" -x "*/node_modules/*" ".cache/*" shell: bash - - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 + - uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2 with: name: ${{ inputs.artifactName }} path: ${{ inputs.artifactName }}.zip @@ -61,7 +61,7 @@ jobs: url: ${{ steps.deploy.outputs.static_web_app_url }} steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4 + - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d # v4.1.5 with: name: ${{ inputs.artifactName }} path: '.' diff --git a/.github/workflows/it-tests.yml b/.github/workflows/it-tests.yml index 80c9b4d00f..3f04bc8fbf 100644 --- a/.github/workflows/it-tests.yml +++ b/.github/workflows/it-tests.yml @@ -40,7 +40,7 @@ jobs: run: zip -r verdaccio.zip ./.verdaccio shell: bash - name: Publish verdaccio storage - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 + uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2 with: name: verdaccio path: verdaccio.zip @@ -91,7 +91,7 @@ jobs: npm cache --cache=.cache/test-app/npm-cache ls | grep 127.0.0.1:4873 | xargs -d'\n' -r -n 1 npm cache --cache=.cache/test-app/npm-cache clean || true npx --yes -p replace-in-files-cli replace-in-files --regex=".*127.0.0.1:4873.*" --replacement="" ".cache/test-app/npm-cache/_cacache/index-v5/**/*" shell: bash - - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4 + - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d # v4.1.5 name: Download verdaccio storage prepared in the previous job with: name: verdaccio @@ -124,7 +124,7 @@ jobs: shell: bash - name: Publish generated tests environment on failure if: failure() && steps.it-tests.conclusion == 'failure' - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 + uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2 with: name: it-tests-${{ matrix.os }}-${{ matrix.packageManager }} path: it-tests.zip diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c3ba720593..444604d1e6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -141,7 +141,7 @@ jobs: CHROME_REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }} - name: Expose Chrome extension artifact if: '!inputs.prerelease' - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 + uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2 with: name: chrome-extension path: apps/chrome-devtools/chrome-extension.zip diff --git a/tools/github-actions/download-build-output/action.yml b/tools/github-actions/download-build-output/action.yml index daedd0bc5d..ff84de4403 100644 --- a/tools/github-actions/download-build-output/action.yml +++ b/tools/github-actions/download-build-output/action.yml @@ -9,7 +9,7 @@ inputs: runs: using: 'composite' steps: - - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4 + - uses: actions/download-artifact@8caf195ad4b1dee92908e23f56eeb0696f1dd42d # v4.1.5 if: github.event_name != 'workflow_run' with: name: ${{ inputs.artifactName }} diff --git a/tools/github-actions/upload-build-output/action.yml b/tools/github-actions/upload-build-output/action.yml index 61178cd887..e90a3acedf 100644 --- a/tools/github-actions/upload-build-output/action.yml +++ b/tools/github-actions/upload-build-output/action.yml @@ -11,7 +11,7 @@ runs: steps: - run: zip -q -r ${{ inputs.artifactName }}.zip . -i "apps/*/dist/*" "packages/*/dist/*" -x "*/node_modules/*" ".cache/*" shell: bash - - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 + - uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4.3.2 with: name: ${{ inputs.artifactName }} path: ${{ inputs.artifactName }}.zip