Skip to content

ci: upgrade actions/upload-artifact and actions/download-artifact to v4 #897

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 19, 2025
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/r-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ jobs:
run: |
make inspect-image/r-ver-test-"${{ env.TAG }}"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tmp
name: tmp-${{ env.TAG }}
path: tmp

regression-test:
Expand Down
19 changes: 10 additions & 9 deletions .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:
IMAGELIST_NAME="${{ matrix.r_version }}-${{ matrix.group }}.tsv" \
make inspect-image-all
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tmp
name: tmp-${{ matrix.r_version }}-${{ matrix.group }}
path: tmp

inspect-extra:
Expand All @@ -89,9 +89,9 @@ jobs:
IMAGELIST_NAME="${{ matrix.r_version }}-extra-${{ matrix.group }}.tsv" \
make inspect-image-all
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tmp
name: tmp-${{ matrix.r_version }}-extra-${{ matrix.group }}
path: tmp

inspect-experimental:
Expand All @@ -111,9 +111,9 @@ jobs:
IMAGELIST_NAME="experimental.tsv" \
make inspect-image-all
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tmp
name: tmp-experimental
path: tmp

publish_reports:
Expand All @@ -136,17 +136,18 @@ jobs:
repository: "${{ github.repository }}.wiki"
path: reports
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: tmp
path: tmp
pattern: tmp-*
merge-multiple: true
- name: Generate reports and update wiki home
run: |
make --jobs=2 report-all
make --always-make wiki-home
- name: Upload artifacts
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: reports
path: reports
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/scripts-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- master
paths:
- .github/workflows/scripts-test.yml
- tests/rocker_scripts/Dockerfile
- tests/rocker_scripts/matrix.json
- tests/rocker_scripts/test.sh
Expand Down Expand Up @@ -59,7 +60,7 @@ jobs:
run: |
make inspect-image/"${{ steps.prep.outputs.output_tag }}"
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: tmp
name: tmp-${{ steps.prep.outputs.output_tag }}
path: tmp
Loading