Skip to content

Commit 0a6de7c

Browse files
Bump actions/upload-artifact from 2 to 3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 59459fc commit 0a6de7c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
working-directory: ./android
3232
- name: Upload linting results
3333
if: failure() && steps.lint.outcome == 'failure'
34-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v3
3535
with:
3636
name: lint-report
3737
path: ./android/build/reports

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Publish
7979
run: ./gradlew $PUBLISH_TASK
8080
- name: Upload Build Artifact
81-
uses: actions/upload-artifact@v2.2.4
81+
uses: actions/upload-artifact@v3
8282
with:
8383
name: drop
8484
path: |

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Build with Gradle
3030
run: ./gradlew build
3131
- name: Upload a Build Artifact
32-
uses: actions/upload-artifact@v2.2.4
32+
uses: actions/upload-artifact@v3
3333
with:
3434
name: drop
3535
path: |

0 commit comments

Comments
 (0)