Skip to content

Commit 9f06d68

Browse files
authored
chore: artifact action v3 upgrade (#1926)
1 parent cf0a275 commit 9f06d68

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
arguments: testAggregateTestReport
3535
- name: Persist aggregated test reports on failure
3636
if: ${{ failure() }}
37-
uses: actions/upload-artifact@v3
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: Test report - Java
4040
path: build/reports/tests/unit-test/aggregated-results/

.github/workflows/end_to_end.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
arguments: shadowJar
6060
- name: Persist gtfs-validator snapshot jar
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: gtfs-validator-snapshot
6464
path: cli/build/libs/gtfs-validator-*-cli.jar
@@ -78,7 +78,7 @@ jobs:
7878
echo "matrix=$DATASETS" >> $GITHUB_OUTPUT
7979
- name: Persist metadata
8080
if: always()
81-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8282
with:
8383
name: datasets_metadata
8484
path: scripts/mobility-database-harvester/datasets_metadata
@@ -94,7 +94,7 @@ jobs:
9494
steps:
9595
- uses: actions/checkout@v3
9696
- name: Download latest changes .jar file from previous job
97-
uses: actions/download-artifact@v3
97+
uses: actions/download-artifact@v4
9898
with:
9999
name: gtfs-validator-snapshot
100100
path: gtfs-validator-snapshot

.github/workflows/notice_migration_generation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: ./gradlew webClientRulesJSON
4242

4343
- name: Upload previous rules.json
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: rules-${{ env.PREVIOUS_VERSION }}
4747
path: web/client/static/rules.json
@@ -55,13 +55,13 @@ jobs:
5555
run: ./gradlew webClientRulesJSON
5656

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

6363
- name: Download all workflow artifacts
64-
uses: actions/download-artifact@v3
64+
uses: actions/download-artifact@v4
6565

6666
- name: Validate download
6767
run: ls -la rules*

.github/workflows/test_pack_doc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
arguments: testAggregateTestReport --continue
4242
- name: Persist aggregated test reports on failure - Java ${{ matrix.java_version }} on ${{ matrix.os }}
4343
if: ${{ failure() }}
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: Test report - Java ${{ matrix.java_version }} on ${{ matrix.os }}
4747
path: build/reports/tests/unit-test/aggregated-results/
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
arguments: shadowJar
7373
- name: Persist cli app jar
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: Application - CLI executable - Java ${{ matrix.java_version }} JAR file -- ${{ matrix.os }}
7777
path: cli/build/libs/gtfs-validator-*-cli.jar
@@ -100,7 +100,7 @@ jobs:
100100
with:
101101
arguments: aggregateJavadoc
102102
- name: Persist javadoc
103-
uses: actions/upload-artifact@v3
103+
uses: actions/upload-artifact@v4
104104
with:
105105
name: Documentation - javadoc - Java ${{ matrix.java_version }} - ${{ matrix.java_version }}
106106
path: build/docs/javadoc/

0 commit comments

Comments
 (0)