Skip to content

Commit

Permalink
Revert "Bump actions/upload-artifact from 3 to 4": hidden dependency …
Browse files Browse the repository at this point in the history
…to newer glibc (#1963)

Reverts #1951
  • Loading branch information
JasonMarechal25 authored Feb 26, 2024
1 parent 4ba630c commit 48fa527
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-userguide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
echo "PDF_PATH_ASSET= [\"docs/pdf-doc-generation-with-sphinx/$PDF_NAME\"]" >> $GITHUB_ENV
- name: user guide upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: pdf-reference-guide
path: ${{ env.PDF_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/centos7-system-deps-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ jobs:
cpack -G TGZ
- name: Installer archive upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: antares-centos7-archive
path: _build/*.tar.gz

- name: Installer rpm upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: antares-centos7-rpm
path: _build/*.rpm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/centos7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@ jobs:
cpack -G TGZ
- name: Installer TGZ push
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/*.tar.gz

- name: Installer RPM push
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/*.rpm

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/oracle8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ jobs:
cpack -G TGZ
- name: Installer TGZ push
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/*.tar.gz

- name: Installer RPM push
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/*.rpm

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-system-deps-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ jobs:
cpack -G TGZ
- name: Installer archive upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: antares-ubuntu-archive
path: _build/*.tar.gz

- name: Installer deb upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: antares-ubuntu-deb
path: _build/*.deb
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Upload logs for failed tests
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: test-log
path: ${{ github.workspace }}/_build/Testing/Temporary/LastTest.log
Expand Down Expand Up @@ -269,12 +269,12 @@ jobs:
rm -rf install
- name: Installer archive upload push
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/*.tar.gz

- name: Installer deb upload push
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/*.deb

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 @@ -190,7 +190,7 @@ jobs:
- name: Upload build on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: MPS-diff
path: ${{ github.workspace }}/src/tests/mps
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
- name: Upload NSIS log on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: NSISError.log
path: _build/_CPack_Packages/win64/NSIS/NSISOutput.log
Expand All @@ -322,7 +322,7 @@ jobs:
cpack -G ZIP
- name: Installer upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: _build/${{env.NSIS_NAME}}

Expand Down

0 comments on commit 48fa527

Please sign in to comment.