Skip to content

Commit 01c6578

Browse files
committed
Update github actions versions
Signed-off-by: Matthew Peveler <[email protected]>
1 parent 2b0c5f9 commit 01c6578

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
if: runner.os == 'Linux'
2121
run: sudo apt-get install libgnome-keyring-dev icnsutils graphicsmagick rpm bsdtar
2222

23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
- name: Use Node.js ${{ env.node-version }}
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v4
2727
with:
2828
node-version: ${{ env.node-version }}
2929
cache: npm
30-
30+
3131
# Version of npm that comes in 14.x is npm@6
3232
- run: npm i -g npm@7
3333

@@ -54,7 +54,7 @@ jobs:
5454
- run: npm run dist -- --publish never
5555

5656
- name: Upload artifacts
57-
uses: actions/upload-artifact@v3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: ${{ matrix.os }}
6060
path: dist

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
sudo apt-get update
2626
sudo apt-get install libgnome-keyring-dev icnsutils graphicsmagick rpm bsdtar gcc-multilib g++-multilib
2727
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

30-
- name: Use Node.js ${{ matrix.node-version }}
31-
uses: actions/setup-node@v3
30+
- name: Use Node.js ${{ env.node-version }}
31+
uses: actions/setup-node@v4
3232
with:
33-
node-version: ${{ matrix.node-version }}
33+
node-version: ${{ env.node-version }}
3434

3535
- run: npm ci
3636

0 commit comments

Comments
 (0)