Skip to content

Commit 309b8ea

Browse files
[deps]: Update GitHub Artifact Actions
1 parent a311c53 commit 309b8ea

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/templates/workflow-templates/example-references/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
ls -atlh ../../
5858
5959
- name: Upload artifact
60-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
60+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6161
with:
6262
name: ${{ inputs.project-name }}.zip
6363
path: ./${{ inputs.project-name }}.zip

.github/templates/workflow-templates/example-references/_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: echo "tags=bitwardenprod.azurecr.io/${IMAGE_NAME}:${IMAGE_TAG}" >> $GITHUB_OUTPUT
6262

6363
- name: Get build artifact
64-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
64+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
6565
with:
6666
name: ${{ inputs.project-name }}.zip
6767

.github/workflows/_publish-mobile-github-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
id: previous_state
128128
if: steps.get_previous_run.outputs.has_previous_run == 'true'
129129
continue-on-error: true
130-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
130+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
131131
with:
132132
name: ${{ steps.compose_artifact_name.outputs.artifact_name }}
133133
run-id: ${{ steps.get_previous_run.outputs.previous_run_id }}
@@ -348,7 +348,7 @@ jobs:
348348
EOF
349349
350350
- name: Upload workflow state artifact
351-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
351+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
352352
with:
353353
name: ${{ steps.compose_artifact_name.outputs.artifact_name }}
354354
path: release-info.json

.github/workflows/test-trigger-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
echo "artifact_name=$ARTIFACT_NAME" >> "$GITHUB_OUTPUT"
9696
9797
- name: Download trigger context artifact
98-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
98+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
9999
with:
100100
name: ${{ steps.verify-deployment-payload.outputs.artifact_name }}
101101
path: trigger-context

.github/workflows/upload-test-artifacts.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
echo "$GITHUB_SHA" > artifact/sha
3131
3232
- name: Upload
33-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
33+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3434
with:
3535
name: artifact
3636
path: artifact
@@ -46,13 +46,13 @@ jobs:
4646
echo "$GITHUB_SHA" > artifact2/sha2
4747
4848
- name: Upload first
49-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
49+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5050
with:
5151
name: artifact1
5252
path: artifact1
5353

5454
- name: Upload second
55-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
55+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5656
with:
5757
name: artifact2
5858
path: artifact2
@@ -68,13 +68,13 @@ jobs:
6868
echo "$GITHUB_SHA" > artifact2/sha2
6969
7070
- name: Upload first
71-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
71+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7272
with:
7373
name: artifact1.txt
7474
path: artifact1
7575

7676
- name: Upload second
77-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
77+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7878
with:
7979
name: artifact2.txt
8080
path: artifact2

trigger-actions/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ runs:
105105
'{"inputs": ($inputs // {}), "data": ($data // {})}' > "$TRIGGER_CONTEXT_FILE"
106106
107107
- name: Upload trigger context
108-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
108+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
109109
with:
110110
name: ${{ env.TRIGGER_CONTEXT_ARTIFACT }}
111111
path: ${{ env.TRIGGER_CONTEXT_FILE }}

0 commit comments

Comments
 (0)