Skip to content

Commit

Permalink
Merge pull request #217 from pimoroni/patch-github-actions
Browse files Browse the repository at this point in the history
CI: Bump actions to remove deprecation warnings.
  • Loading branch information
Gadgetoid authored Apr 24, 2024
2 parents 4b374bd + ae65120 commit f301af3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
FIRMWARE_URL: https://github.com/pimoroni/pimoroni-pico/releases/download/v1.20.4

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: enviro
submodules: true

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: gadgetoid/dir2uf2
ref: v0.0.1
Expand All @@ -37,25 +37,25 @@ jobs:
rm -rf enviro/.git*
rm -rf enviro/phew/.git*
- uses: vimtor/action-zip@v1
- uses: vimtor/action-zip@v1.2
with:
files: enviro/
dest: ${{env.RELEASE_FILE}}.zip

- name: Store .zip as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.RELEASE_FILE}}
path: enviro/

- name: Store filesystem .uf2 as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.RELEASE_FILE}}-filesystem-only
path: ${{env.RELEASE_FILE}}.uf2

- name: Store full .uf2 as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{env.FIRMWARE_NAME}}-${{env.RELEASE_FILE}}.uf2
path: ${{env.FIRMWARE_NAME}}-${{env.RELEASE_FILE}}.uf2
Expand Down

0 comments on commit f301af3

Please sign in to comment.