diff --git a/.github/actions/build-dist/action.yml b/.github/actions/build-dist/action.yml index ca455f7..9557276 100644 --- a/.github/actions/build-dist/action.yml +++ b/.github/actions/build-dist/action.yml @@ -17,7 +17,7 @@ runs: run: | cp -r sources/dist . - name: Upload distribution artifact - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 with: name: dist path: dist/ diff --git a/.github/actions/init-integ-test/action.yml b/.github/actions/init-integ-test/action.yml index 7d75c7a..967524f 100644 --- a/.github/actions/init-integ-test/action.yml +++ b/.github/actions/init-integ-test/action.yml @@ -6,7 +6,7 @@ runs: steps: - name: Download dist if: ${{ env.SKIP_DIST != 'true' && !env.ACT }} - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: name: dist path: dist/ diff --git a/.github/workflows/ci-ossf-scorecard.yml b/.github/workflows/ci-ossf-scorecard.yml index d09c287..16d80d8 100644 --- a/.github/workflows/ci-ossf-scorecard.yml +++ b/.github/workflows/ci-ossf-scorecard.yml @@ -43,7 +43,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/integ-test-path-exists.yml b/.github/workflows/integ-test-path-exists.yml index 9aa55b3..91498a6 100644 --- a/.github/workflows/integ-test-path-exists.yml +++ b/.github/workflows/integ-test-path-exists.yml @@ -32,7 +32,7 @@ jobs: echo "This is a test file." > "$temp_file" echo "existing-file-path=$temp_file" >> $GITHUB_OUTPUT - name: Create Artifact - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 with: path: ${{ steps.create-temp-file.outputs.existing-file-path }} name: temp-file-path-exists @@ -53,7 +53,7 @@ jobs: - name: Initialize integration test uses: ./.github/actions/init-integ-test - name: Download Temp File - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: name: temp-file-path-exists - name: Act @@ -82,7 +82,7 @@ jobs: - name: Initialize integration test uses: ./.github/actions/init-integ-test - name: Download Temp File - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: name: temp-file-path-exists - name: Act diff --git a/.github/workflows/integ-test-path-not-exists.yml b/.github/workflows/integ-test-path-not-exists.yml index 97a51b4..4c3fd84 100644 --- a/.github/workflows/integ-test-path-not-exists.yml +++ b/.github/workflows/integ-test-path-not-exists.yml @@ -32,7 +32,7 @@ jobs: echo "This is a test file." > "$temp_file" echo "existing-file-path=$temp_file" >> $GITHUB_OUTPUT - name: Create Artifact - uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 with: path: ${{ steps.create-temp-file.outputs.existing-file-path }} name: temp-file-path-not-exists @@ -153,7 +153,7 @@ jobs: - name: Initialize integration test uses: ./.github/actions/init-integ-test - name: Download Temp File - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: name: temp-file-path-not-exists - name: Act @@ -182,7 +182,7 @@ jobs: - name: Initialize integration test uses: ./.github/actions/init-integ-test - name: Download Temp File - uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7 + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8 with: name: temp-file-path-not-exists - name: Act