Skip to content

Commit bb77ff7

Browse files
authored
Merge pull request #1043 from microsoftgraph/dependabot/github_actions/actions/upload-artifact-3
Bump actions/upload-artifact from 2 to 3
2 parents b94b81d + 8eed2a5 commit bb77ff7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

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

.github/workflows/gradle-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
run: ./gradlew build
3131
- name: Upload Unit Test Results
3232
if: ${{ always() }}
33-
uses: actions/upload-artifact@v2.2.4
33+
uses: actions/upload-artifact@v3
3434
with:
3535
name: UnitTests
3636
path: |
3737
build/reports/tests/test/**
3838
build/test-results/**
3939
- name: Upload a Build Artifact
40-
uses: actions/upload-artifact@v2.2.4
40+
uses: actions/upload-artifact@v3
4141
with:
4242
name: drop
4343
path: |
@@ -86,7 +86,7 @@ jobs:
8686
pkgdiff -hide-unchanged ${{ env.CURRENT_PKG_DIFF }} ${{ env.PRIOR_PKG_DIFF }}
8787
- name: Upload Diff Artifact
8888
if: ${{ always() }}
89-
uses: actions/upload-artifact@v2.2.4
89+
uses: actions/upload-artifact@v3
9090
with:
9191
name: diff
9292
path: |

.github/workflows/preview-and-release.yml

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

0 commit comments

Comments
 (0)