Skip to content

Commit d2ee8d4

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3528da2 commit d2ee8d4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/JetLagged.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Upload test reports
7474
if: always()
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: test-reports-jetlagged-${{ matrix.api-level }}
7878
path: ${{ env.SAMPLE_PATH }}/app/build/reports

.github/workflows/JetNews.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Upload test reports
7777
if: always()
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v5
7979
with:
8080
name: test-reports-jetnews-${{ matrix.api-level }}
8181
path: ${{ env.SAMPLE_PATH }}/app/build/reports/androidTests

.github/workflows/Jetchat.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Upload test reports
7373
if: always()
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v5
7575
with:
7676
name: test-reports-jetchat-${{ matrix.api-level }}
7777
path: ${{ env.SAMPLE_PATH }}/app/build/reports

.github/workflows/Reply.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Upload test reports
7474
if: always()
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: test-reports-reply-${{ matrix.api-level }}
7878
path: ${{ env.SAMPLE_PATH }}/app/build/reports

.github/workflows/build-sample.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ jobs:
8282
run: ./gradlew testDebug --stacktrace
8383

8484
- name: Upload build outputs (APKs)
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: build-outputs
8888
path: ${{ inputs.path }}/${{ inputs.module }}/build/outputs
8989

9090
- name: Upload build reports
9191
if: always()
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v5
9393
with:
9494
name: build-reports
9595
path: ${{ inputs.path }}/${{ inputs.module }}/build/reports

0 commit comments

Comments
 (0)