Skip to content

Commit 5caef24

Browse files
committed
bump actions
1 parent e5c7e14 commit 5caef24

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/example-node-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
runs-on: ubuntu-20.04
66
steps:
7-
- uses: actions/checkout@v3
7+
- uses: actions/checkout@v4
88
# pick the Node version to use and install it
99
# https://github.com/actions/setup-node
1010
- uses: actions/setup-node@v3

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Build and test on ${{ matrix.os }}
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
# caching NPM dependencies
1616
# https://github.com/actions/cache/blob/master/examples.md#node---npm

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
name: Build and test
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- uses: bahmutov/npm-install@v1
3737
- run: npm t
3838
```
@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
name: Build and test
6262
steps:
63-
- uses: actions/checkout@v3
63+
- uses: actions/checkout@v4
6464

6565
- uses: bahmutov/npm-install@v1
6666
with:
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
name: Build and test
9292
steps:
93-
- uses: actions/checkout@v3
93+
- uses: actions/checkout@v4
9494
- uses: bahmutov/npm-install@v1
9595
with:
9696
working-directory: |
@@ -171,7 +171,7 @@ The first cache will have key `npm-tool-a-...` and the second cache will have ke
171171
If you need to use a specific Node version, use the [actions/setup-node](https://github.com/actions/setup-node) before installing the dependencies.
172172

173173
```yml
174-
- uses: actions/checkout@v3
174+
- uses: actions/checkout@v4
175175
# pick the Node version to use and install it
176176
# https://github.com/actions/setup-node
177177
- uses: actions/setup-node@v3

0 commit comments

Comments
 (0)