File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 6
6
steps :
7
7
# Install nodejs. https://github.com/actions/setup-node
8
8
- name : Setup Node.js
9
- uses : actions/setup-node@v3
9
+ uses : actions/setup-node@v4
10
10
with :
11
11
node-version : 18.x
12
12
13
13
# Install pnpm. https://github.com/pnpm/action-setup
14
- - uses : pnpm/action-setup@v2
14
+ - uses : pnpm/action-setup@v4
15
15
with :
16
16
version : 8
17
17
# run_install: false
22
22
run : |
23
23
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
24
24
25
- - uses : actions/cache@v3
25
+ - uses : actions/cache@v4
26
26
name : Setup pnpm cache
27
27
with :
28
28
path : ${{ env.STORE_PATH }}
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
- uses : ./.github/actions/pnpm-setup
15
15
- uses : ./.github/actions/lint
16
16
- uses : ./.github/actions/test
Original file line number Diff line number Diff line change 76
76
runs-on : ubuntu-latest
77
77
steps :
78
78
- name : Checkout code
79
- uses : actions/checkout@v3
79
+ uses : actions/checkout@v4
80
80
81
81
- name : Configure AWS credentials
82
82
uses : aws-actions/configure-aws-credentials@v2
@@ -86,12 +86,12 @@ jobs:
86
86
aws-region : us-east-1
87
87
88
88
- name : Setup pnpm
89
- uses : pnpm/action-setup@v2
89
+ uses : pnpm/action-setup@v4
90
90
with :
91
91
version : 8
92
92
93
93
- name : Set up NodeJS v18
94
- uses : actions/setup-node@v3
94
+ uses : actions/setup-node@v4
95
95
with :
96
96
cache : pnpm # cache pnpm store
97
97
node-version : 18.18.2
@@ -117,7 +117,7 @@ jobs:
117
117
run : echo "version=$(npm ls @playwright/test | grep @playwright | sed 's/.*@//' | sed 's/ .*//' )"
118
118
119
119
- name : Cache Playwright
120
- uses : actions/cache@v3
120
+ uses : actions/cache@v4
121
121
id : playwright-cache
122
122
with :
123
123
path : " ~/.cache/ms-playwright"
@@ -131,7 +131,7 @@ jobs:
131
131
132
132
# Cache turbo runs
133
133
- name : Cache Turbo
134
- uses : actions/cache@v3
134
+ uses : actions/cache@v4
135
135
with :
136
136
path : .turbo
137
137
key : ${{ runner.os }}-turbo-${{ github.sha }}
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
steps :
15
15
- name : Checkout Repo
16
16
# https://github.com/actions/checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
19
19
# Setup .npmrc file to publish to npm
20
- - uses : actions/setup-node@v3
20
+ - uses : actions/setup-node@v4
21
21
with :
22
22
registry-url : " https://registry.npmjs.org"
23
23
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- name : Checkout Repo
16
16
# https://github.com/actions/checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
19
19
- uses : ./.github/actions/pnpm-setup
20
20
You can’t perform that action at this time.
0 commit comments