Skip to content
This repository was archived by the owner on Apr 16, 2023. It is now read-only.

Commit fc30bac

Browse files
Merge pull request #54 from pfeerick/pfeerick-nodejs-actions
chore: Action updates due to NodeJS 12 EoL
2 parents a9c61c1 + 4a046b7 commit fc30bac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy-cp.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
steps:
3131
- uses: actions/setup-python@v4
3232
with:
33-
python-version: '3.10'
33+
python-version: '3.10'
3434

3535
- name: Check out the repo
36-
uses: actions/checkout@v2
36+
uses: actions/checkout@v3
3737

3838
- name: Use Node.js 16.x
39-
uses: actions/setup-node@v1
39+
uses: actions/setup-node@v3
4040
with:
4141
node-version: 16.x
4242

@@ -50,7 +50,7 @@ jobs:
5050
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
5151

5252
- name: Write file - Git commit tag
53-
uses: DamianReeves/write-file-action@v1.0
53+
uses: DamianReeves/write-file-action@v1.2
5454
with:
5555
path: src/support/git_commit
5656
contents: ${{ steps.vars.outputs.sha_short }}
@@ -66,7 +66,7 @@ jobs:
6666
run: mv dist_electron/*.${{ matrix.binary_ending }} edgetx-flasher-${{ matrix.os_name }}-${{ steps.vars.outputs.sha_short }}.${{ matrix.binary_ending }}
6767

6868
- name: Upload ${{ matrix.binary_ending }}
69-
uses: 'actions/upload-artifact@v2'
69+
uses: actions/upload-artifact@v3
7070
with:
7171
name: flasher-latest
7272
path: edgetx-flasher-${{ matrix.os_name }}-${{ steps.vars.outputs.sha_short }}.${{ matrix.binary_ending }}
@@ -80,7 +80,7 @@ jobs:
8080
if: github.event_name != 'pull_request'
8181
steps:
8282
- name: Download artifacts
83-
uses: actions/download-artifact@v2
83+
uses: actions/download-artifact@v3
8484
with:
8585
name: flasher-latest
8686
path: flasher-latest

0 commit comments

Comments
 (0)