Skip to content

Commit

Permalink
Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows (#…
Browse files Browse the repository at this point in the history
…175)

* Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v2...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* update version of upload artefact accordingly

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tremblap <[email protected]>
  • Loading branch information
dependabot[bot] and tremblap authored Sep 6, 2024
1 parent ef87dd8 commit 9901401
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
apppwd: ${{ secrets.APPSTORECONNECTPWD }}
appusr: ${{ secrets.APPSTORECONNECTUSERNAME }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.6
with:
name: macbuild
path: install/FluCoMa-SC-Mac-nightly.dmg
Expand All @@ -53,7 +53,7 @@ jobs:
run: 7z a FluCoMa-SC-Windows-nightly.zip FluidCorpusManipulation
working-directory: install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.6
with:
name: winbuild
path: install/FluCoMa-SC-Windows-nightly.zip
Expand All @@ -71,7 +71,7 @@ jobs:
- name: compress archive
run: tar -zcvf FluCoMa-SC-Linux-nightly.tar.gz FluidCorpusManipulation
working-directory: install
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.6
with:
name: linuxbuild
path: install/FluCoMa-SC-Linux-nightly.tar.gz
Expand All @@ -81,15 +81,15 @@ jobs:
needs: [macbuild, winbuild, linuxbuild]
steps:

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: macbuild

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: winbuild

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: linuxbuild

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
apppwd: ${{ secrets.APPSTORECONNECTPWD }}
appusr: ${{ secrets.APPSTORECONNECTUSERNAME }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.6
with:
name: macbuild
path: install/FluCoMa-SC-Mac.dmg
Expand All @@ -47,7 +47,7 @@ jobs:
run: 7z a FluCoMa-SC-Windows.zip FluidCorpusManipulation
working-directory: install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.6
with:
name: winbuild
path: install/FluCoMa-SC-Windows.zip
Expand All @@ -67,7 +67,7 @@ jobs:
run: tar -zcvf FluCoMa-SC-Linux.tar.gz FluidCorpusManipulation
working-directory: install

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.3.6
with:
name: linuxbuild
path: install/FluCoMa-SC-Linux.tar.gz
Expand All @@ -81,15 +81,15 @@ jobs:
needs: [macbuild, winbuild, linuxbuild]

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: macbuild

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: winbuild

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: linuxbuild

Expand Down

0 comments on commit 9901401

Please sign in to comment.