Skip to content

Commit

Permalink
gradle.yml, graalvm.yml: update upload-artifact to v4
Browse files Browse the repository at this point in the history
Also adjust artifact name as v4 rejects uploads with duplicate names.
  • Loading branch information
msgilligan authored and schildbach committed Jan 31, 2024
1 parent 97a4754 commit 1abecf9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
gradle-version: ${{ matrix.gradle }}
arguments: test nativeCompile --init-script build-scan-agree.gradle --scan --info --stacktrace
- name: Upload wallet-tool as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wallet-tool-${{ matrix.os }}
name: wallet-tool-${{ matrix.os }}-${{ matrix.java-version }}
path: wallettool/build/native/nativeCompile/wallet-tool
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
gradle-version: ${{ matrix.gradle }}
arguments: -PtestJdk8=true build --init-script build-scan-agree.gradle --scan --info --stacktrace
- name: Upload Test Results and Reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: bitcoinj-core-test-results-jdk${{ matrix.java }}-${{ matrix.os }}
name: bitcoinj-core-test-results-jdk${{ matrix.java }}-${{ matrix.os }}-${{ matrix.gradle }}
path: |
core/build/reports/tests/test/
core/build/test-results/test/
Expand Down

0 comments on commit 1abecf9

Please sign in to comment.