Skip to content

Commit 623ab6e

Browse files
Update actions/download-artifact action to v4.2.1
1 parent 1f254ab commit 623ab6e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
if: ${{ inputs.plan != '' && !fromJson(inputs.plan).announcement_tag_is_implicit }}
114114
steps:
115115
- name: Download digests
116-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
116+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
117117
with:
118118
path: /tmp/digests
119119
pattern: digests-*
@@ -256,7 +256,7 @@ jobs:
256256
if: ${{ inputs.plan != '' && !fromJson(inputs.plan).announcement_tag_is_implicit }}
257257
steps:
258258
- name: Download digests
259-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
259+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
260260
with:
261261
path: /tmp/digests
262262
pattern: digests-*

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ jobs:
456456
with:
457457
persist-credentials: false
458458
- uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
459-
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
459+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
460460
name: Download Ruff binary to test
461461
id: download-cached-binary
462462
with:
@@ -525,7 +525,7 @@ jobs:
525525
with:
526526
python-version: ${{ env.PYTHON_VERSION }}
527527

528-
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
528+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
529529
name: Download comparison Ruff binary
530530
id: ruff-target
531531
with:
@@ -784,7 +784,7 @@ jobs:
784784
# installation fails on 3.13 and newer
785785
python-version: "3.12"
786786

787-
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
787+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
788788
name: Download development ruff binary
789789
id: ruff-target
790790
with:

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: "Install uv"
2525
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
26-
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
26+
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
2727
with:
2828
pattern: wheels-*
2929
path: wheels

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ jobs:
125125
with:
126126
submodules: recursive
127127
- name: Install cached dist
128-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
128+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
129129
with:
130130
name: cargo-dist-cache
131131
path: ~/.cargo/bin/
132132
- run: chmod +x ~/.cargo/bin/dist
133133
# Get all the local artifacts for the global tasks to use (for e.g. checksums)
134134
- name: Fetch local artifacts
135-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
135+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
136136
with:
137137
pattern: artifacts-*
138138
path: target/distrib/
@@ -175,14 +175,14 @@ jobs:
175175
with:
176176
submodules: recursive
177177
- name: Install cached dist
178-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
178+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
179179
with:
180180
name: cargo-dist-cache
181181
path: ~/.cargo/bin/
182182
- run: chmod +x ~/.cargo/bin/dist
183183
# Fetch artifacts from scratch-storage
184184
- name: Fetch artifacts
185-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
185+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
186186
with:
187187
pattern: artifacts-*
188188
path: target/distrib/
@@ -251,7 +251,7 @@ jobs:
251251
submodules: recursive
252252
# Create a GitHub Release while uploading all files to it
253253
- name: "Download GitHub Artifacts"
254-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
254+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
255255
with:
256256
pattern: artifacts-*
257257
path: artifacts

0 commit comments

Comments
 (0)