Skip to content

Commit 4f7cb3f

Browse files
dependabot[bot]holly-cummins
authored andcommitted
Bump actions/download-artifact in the artifact-management group
Bumps the artifact-management group with 1 update: [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: artifact-management ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 010d112 commit 4f7cb3f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
steps:
112112
- uses: actions/checkout@v4 # not needed for the code, but needed for the git config
113113
- name: Download Built site
114-
uses: actions/download-artifact@v4
114+
uses: actions/download-artifact@v5
115115
with:
116116
name: site
117117
path: site
@@ -130,7 +130,7 @@ jobs:
130130
steps:
131131
- uses: actions/checkout@v4 # not needed for the code, but needed for the git config
132132
- name: Download Built site
133-
uses: actions/download-artifact@v4
133+
uses: actions/download-artifact@v5
134134
with:
135135
name: site
136136
path: site

.github/workflows/check-external-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cache: "npm" # this only caches global dependencies
3333
- run: npm ci --prefer-offline
3434
- name: Download Built Artifact
35-
uses: actions/download-artifact@v4
35+
uses: actions/download-artifact@v5
3636
with:
3737
github-token: ${{ secrets.GITHUB_TOKEN }} # token with actions:read permissions on target repo
3838
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
1616
steps:
1717
- name: Download PR Artifact
18-
uses: actions/download-artifact@v4
18+
uses: actions/download-artifact@v5
1919
with:
2020
github-token: ${{ secrets.GITHUB_TOKEN }} # token with actions:read permissions on target repo
2121
run-id: ${{ github.event.workflow_run.id }}

0 commit comments

Comments
 (0)