Skip to content

Commit a4e3275

Browse files
committed
chore(ci): update action to NodeJS 24 versions
NodeJS 20 is EOL in April, so Github is starting to warn about NodeJS 20 Actions prior to phassing out in June.
1 parent f75c957 commit a4e3275

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/auto_close.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v8
10+
- uses: actions/stale@v10
1111
with:
1212
# Issue closure message
1313
close-issue-message: 'This issue has been closed due to no activity in over four weeks after having been marked as closure pending.'

.github/workflows/build_fw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
./tools/build-gh.sh
128128
129129
- name: Upload ${{ matrix.target }}
130-
uses: actions/upload-artifact@v4
130+
uses: actions/upload-artifact@v7
131131
with:
132132
name: firmware-${{ matrix.target }}
133133
path: |

.github/workflows/linux_cpn.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ jobs:
7171

7272
- name: Archive production artifacts
7373
if: success()
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v7
7575
with:
7676
name: "${{ env.artifact_name }}"
7777
path: ${{github.workspace}}/output
7878
retention-days: 15
7979

8080
- name: Archive build logs
8181
if: always()
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v7
8383
with:
8484
name: "${{ env.artifact_name }}-logs"
8585
path: ${{github.workspace}}/logs

.github/workflows/macosx_cpn.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ jobs:
9999

100100
- name: Archive production artifacts
101101
if: success()
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v7
103103
with:
104104
name: "${{ env.artifact_name }}"
105105
path: ${{github.workspace}}/output
106106
retention-days: 15
107107

108108
- name: Archive build logs
109109
if: always()
110-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v7
111111
with:
112112
name: "${{ env.artifact_name }}-logs"
113113
path: ${{github.workspace}}/logs

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: ./tools/build-gh.sh
5858

5959
- name: Package firmware ${{ matrix.target }}
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: edgetx-firmware-nightly-${{ matrix.target }}
6363
path: |
@@ -122,7 +122,7 @@ jobs:
122122
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
123123

124124
- name: Deploy nightly release
125-
uses: softprops/action-gh-release@v2
125+
uses: softprops/action-gh-release@v2 #softprops/action-gh-release/pull/670 or v3 to clear nodejs log warning
126126
with:
127127
tag_name: nightly
128128
prerelease: true

.github/workflows/validate_fw_json.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'main'
77
- '[0-9]+.[0-9]+'
88
tags:
9-
- v*
9+
- v*
1010
paths:
1111
- 'fw.json'
1212
pull_request:
@@ -22,7 +22,7 @@ jobs:
2222
name: Validate fw.json file
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- name: Validate fw.json syntax and schema
2828
run: python3 tools/validate-json.py --syntax-only

.github/workflows/win_cpn-64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,15 @@ jobs:
101101

102102
- name: Archive production artifacts
103103
if: success()
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v7
105105
with:
106106
name: "${{ env.artifact_name }}"
107107
path: ${{github.workspace}}/output
108108
retention-days: 15
109109

110110
- name: Archive build logs
111111
if: always()
112-
uses: actions/upload-artifact@v4
112+
uses: actions/upload-artifact@v7
113113
with:
114114
name: "${{ env.artifact_name }}-logs"
115115
path: ${{github.workspace}}/logs

0 commit comments

Comments
 (0)