Skip to content

Commit 9f3a294

Browse files
chore(deps): update github-actions
1 parent 089fa81 commit 9f3a294

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy-preview.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
pull-requests: write
2525
steps:
2626
- name: Download PR metadata
27-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
27+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
2828
with:
2929
name: pr-metadata
3030
run-id: ${{ github.event.workflow_run.id }}
@@ -39,7 +39,7 @@ jobs:
3939
echo "preview_url=$(cat pr-metadata/preview_url)" >> "$GITHUB_OUTPUT"
4040
4141
- name: Comment deployment in progress
42-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
42+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4343
with:
4444
script: |
4545
const prNumber = parseInt('${{ steps.metadata.outputs.pr_number }}', 10);
@@ -74,7 +74,7 @@ jobs:
7474
}
7575
7676
- name: Download build output
77-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
77+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
7878
with:
7979
name: build-output
8080
run-id: ${{ github.event.workflow_run.id }}
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Comment deployment complete
9292
if: success()
93-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
93+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
9494
with:
9595
script: |
9696
const prNumber = parseInt('${{ steps.metadata.outputs.pr_number }}', 10);
@@ -119,7 +119,7 @@ jobs:
119119
120120
- name: Comment deployment failed
121121
if: failure()
122-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
122+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
123123
with:
124124
script: |
125125
const prNumber = parseInt('${{ steps.metadata.outputs.pr_number }}', 10);

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: ./.github/actions/install
3030

3131
- name: Cache Astro build
32-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
32+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
3333
with:
3434
path: |
3535
node_modules/.astro
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Upload build output
5757
if: github.event_name == 'pull_request'
58-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
58+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5959
with:
6060
name: build-output
6161
path: |
@@ -83,7 +83,7 @@ jobs:
8383
8484
- name: Upload PR metadata
8585
if: github.event_name == 'pull_request'
86-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
86+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8787
with:
8888
name: pr-metadata
8989
path: pr-metadata/

0 commit comments

Comments
 (0)