Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/build-dist/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
2 changes: 1 addition & 1 deletion .github/actions/init-integ-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
2 changes: 1 addition & 1 deletion .github/workflows/ci-ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integ-test-path-exists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integ-test-path-not-exists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading