Skip to content

Commit

Permalink
Update upload-artifact in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tdrwenski committed Sep 6, 2024
1 parent b81a9c0 commit 672340f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: ./gradlew buildJekyllSite
- if: success()
name: Upload a preview of the rendered html
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: documentation_${{ github.sha }}
path: docs/build/site
4 changes: 2 additions & 2 deletions .github/workflows/tds-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# run tds tests
echo "Run the TDS tests"
./gradlew $SYSTEM_PROPS --info --stacktrace testAll
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: TDS_JUnit_Results_${{ github.sha }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
# run tds tests
echo "Run the TDS tests"
./gradlew $SYSTEM_PROPS --info --stacktrace testAll --refresh-dependencies
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
if: failure()
with:
name: TDS_JUnit_Results_${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
java-version: ${{ matrix.java-version }}
build-tool: 'gradlew'
test-command: '--info --stacktrace testAll'
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: failure()
with:
name: netCDF-Java_JUnit_Results_${{ github.sha }}_${{ matrix.java-vendor }}-${{ matrix.java-version }}
Expand Down

0 comments on commit 672340f

Please sign in to comment.