Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ jobs:
run: ${{ matrix.extra }} dev/ci.sh ${{ matrix.test-suites }}
- name: "Upload pdf manuals"
if: ${{ contains(matrix.test-suites, 'makemanuals') }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: manuals-pdf
Expand All @@ -265,7 +265,7 @@ jobs:
doc/tut/manual.pdf
- name: "Upload html manuals"
if: ${{ contains(matrix.test-suites, 'makemanuals') }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: manuals-html
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
#
# Warning: the result is a single .zip file (so things are compressed twice).
- name: "Upload GAP tarball"
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: gap
Expand All @@ -161,7 +161,7 @@ jobs:

# Always upload metadata, and keep longer, since it is much smaller.
- name: "Upload JSON metadata"
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: "JSON metadata"
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
# Artifacts live for 1 day, i.e. until the next cron job runs.
- name: "Upload the installer as an artifact"
if: ${{ github.event_name == 'schedule' }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: gap-${{ env.GAP_VERSION }}-x86_64.exe
Expand Down
Loading