Skip to content

Commit

Permalink
Bump actions/upload-artifact from 4.1.0 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.1.0...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 19, 2024
1 parent dcdfb63 commit 993a41a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:

- name: Upload Reports
if: github.repository == 'jaredsburrows/android-gif-search' && github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v4.1.0
uses: actions/upload-artifact@v4.2.0
with:
name: com.burrowsapps.gif.search-reports-${{ github.workflow }}-${{ github.run_id }}
path: |
Expand All @@ -126,14 +126,14 @@ jobs:
- name: Upload Debug APK artifact
if: github.repository == 'jaredsburrows/android-gif-search' && github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v4.1.0
uses: actions/upload-artifact@v4.2.0
with:
name: com.burrowsapps.gif.search-debug-${{ github.workflow }}-${{ github.run_id }}.apk
path: app/build/outputs/apk/debug/app-debug.apk

- name: Upload Release APK artifact
if: github.repository == 'jaredsburrows/android-gif-search' && github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v4.1.0
uses: actions/upload-artifact@v4.2.0
with:
name: com.burrowsapps.gif.search-release-${{ github.workflow }}-${{ github.run_id }}.apk
path: app/build/outputs/apk/release/app-release.apk

0 comments on commit 993a41a

Please sign in to comment.