Skip to content

Commit

Permalink
Update actions/upload-artifact action to v4 (#259)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 17, 2023
1 parent 5806e2f commit 6d065d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
zip -r grails-linux-amd64-snapshot.zip ./grails-linux-amd64-snapshot
- name: Upload Snapshot
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/6.0.x'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: grails-linux-amd64-snapshot
path: grails-linux-amd64-snapshot.zip
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
zip -r grails-darwin-amd64-snapshot.zip ./grails-darwin-amd64-snapshot -x '*.DS_Store*' -x '__MAC_OSX'
- name: Upload Snapshot
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/6.0.x'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: grails-darwin-amd64-snapshot
path: grails-darwin-amd64-snapshot.zip
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
Compress-Archive -Path "./grails-win-amd64-snapshot" -Update -DestinationPath ./grails-win-amd64-snapshot.zip
- name: Publish artifact
if: success() && github.event_name == 'push' && github.ref == 'refs/heads/6.0.x'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: grails-win-amd64-snapshot
path: ./grails-win-amd64-snapshot.zip

0 comments on commit 6d065d1

Please sign in to comment.