Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dependabot[bot] authored and JasonMarechal25 committed May 15, 2024
1 parent c55b840 commit ab6329c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-userguide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}}

- name: upload user guide
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.create-user-guide.outputs.pdf-name }}
path: ${{ steps.create-user-guide.outputs.pdf-path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/centos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

- name: user guide upload
id: userguide_upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: user-guide
path: ${{ steps.create-user-guide.outputs.pdf-path }}
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
echo "TGZ_NAME=$FILE_NAME.tar.gz" >> $GITHUB_ENV
- name: Upload .tar.gz
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.TGZ_NAME}}
path: _build/${{env.TGZ_NAME}}
Expand All @@ -274,7 +274,7 @@ jobs:
antares-xpansion-version: ${{env.VERSION_WITH_XPRESS}}

- name: Upload single file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.create-single-file.outputs.archive-name }}
path: ${{ steps.create-single-file.outputs.archive-path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ol8-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: user guide upload
id: userguide_upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: user-guide
path: ${{ steps.create-user-guide.outputs.pdf-path }}
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
echo "TGZ_NAME=$FILE_NAME.tar.gz" >> $GITHUB_ENV
- name: Upload .tar.gz
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.TGZ_NAME}}
path: _build/${{env.TGZ_NAME}}
Expand All @@ -237,7 +237,7 @@ jobs:
antares-xpansion-version: ${{env.VERSION_WITH_XPRESS}}

- name: Upload single file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.create-single-file.outputs.archive-name }}
path: ${{ steps.create-single-file.outputs.archive-path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: user guide upload
id: userguide_upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: user-guide
path: ${{ steps.create-user-guide.outputs.pdf-path }}
Expand Down Expand Up @@ -222,13 +222,13 @@ jobs:
#Uploads are not necessary for release but useful in other cases
- name: Upload .tar.gz
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.TGZ_NAME}}
path: _build/${{env.TGZ_NAME}}

- name: Upload single file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.create-single-file.outputs.archive-name }}
path: ${{ steps.create-single-file.outputs.archive-path }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: user guide upload
id: userguide_upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: user-guide
path: ${{ steps.create-user-guide.outputs.pdf-path }}
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
echo "VERSION_WITH_XPRESS=$VERSION" >> $GITHUB_ENV
- name: Upload installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.ZIP_NAME}}
path: _build/${{env.ZIP_NAME}}
Expand All @@ -237,7 +237,7 @@ jobs:
antares-xpansion-version: ${{env.VERSION_WITH_XPRESS}}

- name: Upload single file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.create-single-file.outputs.archive-name }}
path: ${{ steps.create-single-file.outputs.archive-path }}
Expand Down

0 comments on commit ab6329c

Please sign in to comment.