mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-06-23 13:42:43 -04:00
updated github action versions
- updated all the actions to the newer versions due to nodejs16 being deprecated
This commit is contained in:
parent
4d5f908817
commit
88a6967676
1 changed files with 5 additions and 5 deletions
10
.github/workflows/qmk_userspace_build.yml
vendored
10
.github/workflows/qmk_userspace_build.yml
vendored
|
@ -30,19 +30,19 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Userspace
|
- name: Checkout Userspace
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ github.token }}
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Check if qmk_firmware exists
|
- name: Check if qmk_firmware exists
|
||||||
id: check_files
|
id: check_files
|
||||||
uses: andstor/file-existence-action@v2
|
uses: andstor/file-existence-action@v3
|
||||||
with:
|
with:
|
||||||
files: qmk_firmware
|
files: qmk_firmware
|
||||||
|
|
||||||
- name: Checkout QMK Firmware
|
- name: Checkout QMK Firmware
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
if: steps.check_files.outputs.files_exists == 'false'
|
if: steps.check_files.outputs.files_exists == 'false'
|
||||||
with:
|
with:
|
||||||
token: ${{ github.token }}
|
token: ${{ github.token }}
|
||||||
|
@ -68,7 +68,7 @@ jobs:
|
||||||
|
|
||||||
- name: Check if non-tree keyboard json file exists
|
- name: Check if non-tree keyboard json file exists
|
||||||
id: check_json_files
|
id: check_json_files
|
||||||
uses: andstor/file-existence-action@v2
|
uses: andstor/file-existence-action@v3
|
||||||
with:
|
with:
|
||||||
files: ${{ inputs.qmk_nontree_json }}
|
files: ${{ inputs.qmk_nontree_json }}
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ jobs:
|
||||||
[ ! -f .failed ] || exit 1
|
[ ! -f .failed ] || exit 1
|
||||||
|
|
||||||
- name: Upload binaries
|
- name: Upload binaries
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
if: always() && !cancelled()
|
if: always() && !cancelled()
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue