Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Upload plantuml.jar
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: plantuml-jdk8-jar
path: plantuml.jar
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
run: gradle test --no-daemon -i

- name: Upload test reports
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: needs.workflow_config.outputs.do_test_linux == 'true'
with:
# Using github.run_number here to reduce confusion when downloading & comparing from several builds
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
enableCrossOsArchive: true

- name: Upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
# Using github.run_number here to reduce confusion when downloading & comparing artifacts from several builds
name: ${{ github.run_number }}-artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev-intermediate-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
run: gradle test --tests IntermediateTest_0000

- name: Upload test reports
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
# Using github.run_number here to reduce confusion when downloading & comparing from several builds
name: ${{ github.run_number }}-test-reports
path: build/reports/tests/

- name: Upload outputdev
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: ${{ github.run_number }}-outputdev
path: outputdev
2 changes: 1 addition & 1 deletion .github/workflows/dev-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: gradle test -i

- name: Upload test reports
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
# Using github.run_number here to reduce confusion when downloading & comparing from several builds
name: ${{ github.run_number }}-test-reports
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/native-image-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
zip -r plantuml-headless-linux-amd64-SNAPSHOT.zip plantuml-gplv2/build/native/nativeHeadlessCompile/

- name: Upload build artifacts (Linux)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: linux-amd64
path: |
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
Compress-Archive -Path "plantuml-gplv2/build/native/nativeHeadlessCompile/*" -DestinationPath "plantuml-headless-windows-amd64-SNAPSHOT.zip"

- name: Upload build artifacts (Windows)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: windows-amd64
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
zip -r plantuml-headless-darwin-arm64-SNAPSHOT.zip plantuml-gplv2/build/native/nativeHeadlessCompile/

- name: Upload build artifacts (macOS)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: darwin-arm64
path: |
Expand Down