Skip to content

Commit 51e52ad

Browse files
author
Michael Wittwer
committed
chore(build): update action versions
1 parent c52f45c commit 51e52ad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
name: Node.js v${{ matrix.node }}
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v3
29-
- uses: actions/setup-node@v3
28+
- uses: actions/checkout@v4
29+
- uses: actions/setup-node@v4
3030
with:
3131
node-version: ${{ matrix.node }}
3232
- name: Get npm cache directory
3333
id: npm-cache-dir
3434
shell: bash
3535
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
36-
- uses: actions/cache@v3
36+
- uses: actions/cache@v4
3737
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
3838
with:
3939
path: ${{ steps.npm-cache-dir.outputs.dir }}
@@ -54,16 +54,16 @@ jobs:
5454
needs: test
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- name: Install Node v18
59-
uses: actions/setup-node@v3
59+
uses: actions/setup-node@v4
6060
with:
6161
node-version: 18
6262
- name: Get npm cache directory
6363
id: npm-cache-dir
6464
shell: bash
6565
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
66-
- uses: actions/cache@v3
66+
- uses: actions/cache@v4
6767
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
6868
with:
6969
path: ${{ steps.npm-cache-dir.outputs.dir }}

0 commit comments

Comments
 (0)