Skip to content

Commit eba0e19

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

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/_build-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Keep artifact
2929
id: keep-artifact
3030
run: python -c "print('DAYS=' + str(5 if '${{ github.event_name }}'.startswith('pull_request') else 0))" >> $GITHUB_OUTPUT
31-
- uses: actions/upload-artifact@v3
31+
- uses: actions/upload-artifact@v4
3232
with:
3333
name: ${{ inputs.artifact-name }}
3434
path: dist
@@ -62,7 +62,7 @@ jobs:
6262
mkdir pypi/${{ matrix.pkg-name }}
6363
cp dist/* pypi/${{ matrix.pkg-name }}/
6464
65-
- uses: actions/upload-artifact@v3
65+
- uses: actions/upload-artifact@v4
6666
with:
6767
name: ${{ inputs.artifact-name }}
6868
path: pypi

.github/workflows/_flagship-apps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
--capture=no -v --color=yes
103103
104104
- name: Upload recordings
105-
uses: actions/upload-artifact@v3
105+
uses: actions/upload-artifact@v4
106106
if: failure()
107107
with:
108108
name: flahship-app-${{ matrix.app }}

.github/workflows/_legacy-checkpoints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
python -c "print('AWS_RUN=' + str('' if '${{inputs.push_to_s3}}' == 'true' else '--dryrun'))" >> $GITHUB_ENV
105105
106106
- name: Upload checkpoints to GitHub Actions artifact
107-
uses: actions/upload-artifact@v3
107+
uses: actions/upload-artifact@v4
108108
with:
109109
name: checkpoints-${{ github.sha }}
110110
path: ${{ env.legacy_dir }}/checkpoints/

.github/workflows/docs-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
run: echo "ARTIFACT_DAYS=7" >> $GITHUB_ENV
117117
- name: Upload built docs
118118
if: ${{ matrix.target == 'html' }}
119-
uses: actions/upload-artifact@v3
119+
uses: actions/upload-artifact@v4
120120
with:
121121
name: docs-${{ matrix.pkg-name }}-${{ github.sha }}
122122
path: docs/build/html/

0 commit comments

Comments
 (0)