Skip to content

Commit 2a20dbf

Browse files
committed
chore: updated actions/checkout and actions/cache to v4
1 parent 67e778f commit 2a20dbf

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
name: Install
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Cache node_modules
1515
id: cacheModules
16-
uses: actions/cache@v3
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') }}
@@ -41,8 +41,8 @@ jobs:
4141
needs: [install]
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v3
45-
- uses: actions/cache@v3
44+
- uses: actions/checkout@v4
45+
- uses: actions/cache@v4
4646
with:
4747
path: ~/.npm # this is cache where npm installs from before going out to the network
4848
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}

.github/workflows/checks.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
node-version: [14.x, 16.x, 18.x, 20.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
ref: ${{ inputs.ref }}
25-
- uses: actions/cache@v3
25+
- uses: actions/cache@v4
2626
with:
2727
path: ~/.npm # this is cache where npm installs from before going out to the network
2828
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -37,10 +37,10 @@ jobs:
3737
name: Browser Test Specs
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
with:
4242
ref: ${{ inputs.ref }}
43-
- uses: actions/cache@v3
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') }}
@@ -55,10 +55,10 @@ jobs:
5555
name: Code Lint
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5959
with:
6060
ref: ${{ inputs.ref }}
61-
- uses: actions/cache@v3
61+
- uses: actions/cache@v4
6262
with:
6363
path: ~/.npm # this is cache where npm installs from before going out to the network
6464
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -69,10 +69,10 @@ jobs:
6969
name: Types
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@v3
72+
- uses: actions/checkout@v4
7373
with:
7474
ref: ${{ inputs.ref }}
75-
- uses: actions/cache@v3
75+
- uses: actions/cache@v4
7676
with:
7777
path: ~/.npm # this is cache where npm installs from before going out to the network
7878
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,12 +28,12 @@ jobs:
2828
name: Install
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
with:
3333
ref: ${{ github.event.pull_request.head.sha }}
3434
- name: Cache node_modules
3535
id: cacheModules
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: ~/.npm # this is cache where npm installs from before going out to the network
3939
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
@@ -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 # cache where "npm install" uses before going out to the network
2525
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
path: ~/.npm # cache where "npm install" uses before going out to the network
5252
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -60,13 +60,13 @@ jobs:
6060
runs-on: ubuntu-latest
6161
needs: [checks, security]
6262
steps:
63-
- uses: actions/checkout@v3
63+
- uses: actions/checkout@v4
6464
- uses: actions/setup-node@v3
6565
with:
6666
node-version-file: '.nvmrc'
6767
# Setup .npmrc file to publish to npm
6868
registry-url: 'https://registry.npmjs.org'
69-
- uses: actions/cache@v3
69+
- uses: actions/cache@v4
7070
with:
7171
path: ~/.npm # this is cache where npm installs from before going out to the network
7272
key: ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}

0 commit comments

Comments
 (0)