Skip to content

Commit f991e47

Browse files
committed
chore: updated action/checkout and action/cache to v4
1 parent d876b0f commit f991e47

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
name: Install
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Cache node_modules
2121
id: cacheModules
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: ~/.npm # this is cache where npm installs from before going out to the network
2525
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -39,8 +39,8 @@ jobs:
3939
needs: [install]
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v3
43-
- uses: actions/cache@v3
42+
- uses: actions/checkout@v4
43+
- uses: actions/cache@v4
4444
with:
4545
path: ~/.npm # this is cache where npm installs from before going out to the network
4646
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}

.github/workflows/checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
node-version: [10.x, 12.x, 14.x, 16.x]
1313
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1414
steps:
15-
- uses: actions/checkout@v3
16-
- uses: actions/cache@v3
15+
- uses: actions/checkout@v4
16+
- uses: actions/cache@v4
1717
with:
1818
path: ~/.npm # this is cache where npm installs from before going out to the network
1919
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -28,8 +28,8 @@ jobs:
2828
name: Code Lint
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
32-
- uses: actions/cache@v3
31+
- uses: actions/checkout@v4
32+
- uses: actions/cache@v4
3333
with:
3434
path: ~/.npm # this is cache where npm installs from before going out to the network
3535
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -40,8 +40,8 @@ jobs:
4040
name: Types
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v3
44-
- uses: actions/cache@v3
43+
- uses: actions/checkout@v4
44+
- uses: actions/cache@v4
4545
with:
4646
path: ~/.npm # this is cache where npm installs from before going out to the network
4747
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
name: Install
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Cache node_modules
3333
id: cacheModules
34-
uses: actions/cache@v3
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.npm # this is cache where npm installs from before going out to the network
3737
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
name: Install
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- name: Cache node_modules
2727
id: cacheModules
28-
uses: actions/cache@v3
28+
uses: actions/cache@v4
2929
with:
3030
path: ~/.npm # this is cache where npm installs from before going out to the network
3131
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -45,8 +45,8 @@ jobs:
4545
needs: [install]
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v3
49-
- uses: actions/cache@v3
48+
- uses: actions/checkout@v4
49+
- uses: actions/cache@v4
5050
with:
5151
# This is cache where npm installs from before going out to the network
5252
path: ~/.npm
@@ -61,13 +61,13 @@ jobs:
6161
runs-on: ubuntu-latest
6262
needs: [checks, security]
6363
steps:
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v4
6565
- uses: actions/setup-node@v3
6666
with:
6767
node-version-file: '.nvmrc'
6868
# Setup .npmrc file to publish to npm
6969
registry-url: 'https://registry.npmjs.org'
70-
- uses: actions/cache@v3
70+
- uses: actions/cache@v4
7171
with:
7272
path: ~/.npm # this is cache where npm installs from before going out to the network
7373
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}

0 commit comments

Comments
 (0)