diff options
| author | ReFil <31960031+ReFil@users.noreply.github.com> | 2022-10-23 18:03:25 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-23 18:03:25 +0000 |
| commit | b13c301b584818c1d6e98f0a17001b6ec8f4e05d (patch) | |
| tree | 58f90b3a2e23f1ea4c4d122e0c03a589484a8fdd | |
| parent | ca29f73863f78898d8a8ac68ab68f1ff1b3af7c3 (diff) | |
| parent | 241a0adc8cd5a854ef997d8940b3d18eadc386bf (diff) | |
Merge pull request #33 from douglascamata/patch-1
Upgrade Github Actions to avoid deprecations
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7093b49..2ef9451 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,9 +10,9 @@ jobs: name: Build steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache west modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-zephyr-modules with: @@ -44,7 +44,7 @@ jobs: - name: Rename zmk.uf2 run: cp build/left/zephyr/zmk.uf2 left.uf2 && cp build/right/zephyr/zmk.uf2 right.uf2 - name: Archive (Adv360) - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: firmware path: | |
