Skip to content

Commit

Permalink
Use v4 of the upload-artifact action
Browse files Browse the repository at this point in the history
The v3 upload-artifact action is deprecated and will be removed in the
future. This PR updates the action to use v4.

Note possibly breaking changes given in
https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md.
I haven't reviewed these carefully, but at a glance I don't see use of
these patterns.
  • Loading branch information
billsacks committed Jan 16, 2025
1 parent d366abc commit fc7a86a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-change.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
docker rm ${CID}
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: api-change
path: ${{ github.workspace }}/artifacts
2 changes: 1 addition & 1 deletion .github/workflows/build-esmf-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
docker rm ${CID}
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: esmf-docs
path: ${{ github.workspace }}/artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-esmpy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
docker rm ${CID}
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: esmpy-docs
path: ${{ github.workspace }}/artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-build-spack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
# push test results to artifacts
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Artifacts for ${{ matrix.compiler }} ${{ matrix.esmf }}
path: ${{ github.workspace }}/nuopc-app-prototypes/Artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
docker rm ${CID}
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-coverage
path: ${{ github.workspace }}/artifacts

0 comments on commit fc7a86a

Please sign in to comment.