Skip to content

Commit 1845de1

Browse files
Bump actions/download-artifact from 3 to 4
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ae1f78c commit 1845de1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/_build-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
pkg-name: ${{ fromJSON(inputs.pkg-names) }}
4444
steps:
4545
- uses: actions/checkout@v4
46-
- uses: actions/download-artifact@v3
46+
- uses: actions/download-artifact@v4
4747
with:
4848
name: ${{ inputs.artifact-name }}
4949
path: pypi

.github/workflows/ci-pkg-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/setup-python@v5
5757
with:
5858
python-version: ${{ matrix.python-version }}
59-
- uses: actions/download-artifact@v3
59+
- uses: actions/download-artifact@v4
6060
with:
6161
name: dist-packages-${{ github.sha }}
6262
path: dist

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
# use input if dispatch or git tag
145145
VERSION: ${{ inputs.version || github.ref_name }}
146146
steps:
147-
- uses: actions/download-artifact@v3
147+
- uses: actions/download-artifact@v4
148148
with:
149149
name: docs-${{ matrix.pkg-name }}-${{ github.sha }}
150150
path: docs/build/html/

.github/workflows/release-pkg.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: github.event_name == 'release'
3838
steps:
3939
- uses: actions/checkout@v4
40-
- uses: actions/download-artifact@v3
40+
- uses: actions/download-artifact@v4
4141
with:
4242
name: dist-packages-${{ github.sha }}
4343
path: dist
@@ -167,7 +167,7 @@ jobs:
167167
name: ["APP", "FABRIC", "PYTORCH", "LIGHTNING"]
168168
steps:
169169
- uses: actions/checkout@v4 # needed for local action below
170-
- uses: actions/download-artifact@v3
170+
- uses: actions/download-artifact@v4
171171
with:
172172
name: dist-packages-${{ github.sha }}
173173
path: dist
@@ -192,7 +192,7 @@ jobs:
192192
name: ["APP", "FABRIC", "PYTORCH", "LIGHTNING"]
193193
steps:
194194
- uses: actions/checkout@v4 # needed for local action below
195-
- uses: actions/download-artifact@v3
195+
- uses: actions/download-artifact@v4
196196
with:
197197
name: dist-packages-${{ github.sha }}
198198
path: dist

0 commit comments

Comments
 (0)