Skip to content

Commit

Permalink
updated to actions/upload|download-artifact@v4 (#12)
Browse files Browse the repository at this point in the history
* updated to actions/upload|download-artifact@v4

* update sync tags since this is probably breaking

* remove duplicate upload keyz
  • Loading branch information
pirog authored Nov 15, 2024
1 parent c09d1f6 commit 2e75f33
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pr-func-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
uses: ./
with:
entrypoint: bin/test
upload-key: another-thing-${{ github.sha }}
filename: bob

basic-cross-platform-test:
Expand Down Expand Up @@ -104,7 +105,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Download ${{ matrix.file }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ matrix.file }}
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
sync-token: ${{ secrets.RTFM47_COAXIUM_INJECTOR }}
sync-email: rtfm47@lando.dev
sync-username: rtfm-47
sync-tags: v5
sync-tags: v6
update-files: CHANGELOG.md
update-files-header: |
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

### **BREAKING CHANGES**

* Updated to `actions/upload-artifact@v4`

See [this migration guide](https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md) for help in updating your actions.

## v5.2.0 - [November 14, 2024](https://github.com/lando/pkg-action/releases/tag/v5.2.0)

* Added `inputs.filename` to customize the name of the output binary
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ runs:
- name: Upload ${{ steps.pkg-action.outputs.artifact-key }}
if: inputs.test != 'true' && inputs.upload == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.pkg-action.outputs.artifact-key }}
path: ${{ steps.pkg-action.outputs.file }}
Expand Down

0 comments on commit 2e75f33

Please # to comment.