Skip to content
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

chore: artifact action v3 upgrade #1926

Merged
merged 1 commit into from
Nov 26, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
arguments: testAggregateTestReport
- name: Persist aggregated test reports on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Test report - Java
path: build/reports/tests/unit-test/aggregated-results/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/end_to_end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
with:
arguments: shadowJar
- name: Persist gtfs-validator snapshot jar
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: gtfs-validator-snapshot
path: cli/build/libs/gtfs-validator-*-cli.jar
Expand All @@ -78,7 +78,7 @@ jobs:
echo "matrix=$DATASETS" >> $GITHUB_OUTPUT
- name: Persist metadata
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: datasets_metadata
path: scripts/mobility-database-harvester/datasets_metadata
Expand All @@ -94,7 +94,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Download latest changes .jar file from previous job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: gtfs-validator-snapshot
path: gtfs-validator-snapshot
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/notice_migration_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: ./gradlew webClientRulesJSON

- name: Upload previous rules.json
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rules-${{ env.PREVIOUS_VERSION }}
path: web/client/static/rules.json
Expand All @@ -55,13 +55,13 @@ jobs:
run: ./gradlew webClientRulesJSON

- name: Upload current rules.json
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rules-${{ github.event.inputs.NEW_VERSION }}
path: web/client/static/rules.json

- name: Download all workflow artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Validate download
run: ls -la rules*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_pack_doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
arguments: testAggregateTestReport --continue
- name: Persist aggregated test reports on failure - Java ${{ matrix.java_version }} on ${{ matrix.os }}
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Test report - Java ${{ matrix.java_version }} on ${{ matrix.os }}
path: build/reports/tests/unit-test/aggregated-results/
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
with:
arguments: shadowJar
- name: Persist cli app jar
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Application - CLI executable - Java ${{ matrix.java_version }} JAR file -- ${{ matrix.os }}
path: cli/build/libs/gtfs-validator-*-cli.jar
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
with:
arguments: aggregateJavadoc
- name: Persist javadoc
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Documentation - javadoc - Java ${{ matrix.java_version }} - ${{ matrix.java_version }}
path: build/docs/javadoc/
Loading