Skip to content

Commit

Permalink
Merge pull request #1712 from microsoftgraph/dependabot/github_action…
Browse files Browse the repository at this point in the history
…s/actions/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
andrueastman authored Dec 15, 2023
2 parents 6425804 + 0d238c0 commit 27328d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-level-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
working-directory: ./android
- name: Upload linting results
if: failure() && steps.lint.outcome == 'failure'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lint-report
path: ./android/build/reports
6 changes: 3 additions & 3 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
run: ./gradlew build
- name: Upload Unit Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: UnitTests
path: |
build/reports/tests/test/**
build/test-results/**
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: drop
path: |
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
pkgdiff -hide-unchanged ${{ env.PRIOR_PKG_DIFF }} ${{ env.CURRENT_PKG_DIFF }}
- name: Upload Diff Artifact
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: diff
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Publish
run: ./gradlew $PUBLISH_TASK
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: drop
path: |
Expand Down

0 comments on commit 27328d1

Please sign in to comment.