File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v3
19
19
20
20
- name : Set up Node.js
21
- uses : actions/setup-node@v2
21
+ uses : actions/setup-node@v3
22
22
with :
23
23
node-version : 16
24
24
cache : yarn
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
31
31
build_type : ["backend", "frontend-legacy", "frontend"]
32
32
33
33
steps :
34
- - uses : actions/checkout@v2
34
+ - uses : actions/checkout@v3
35
35
with :
36
36
repository : discourse/discourse
37
37
fetch-depth : 1
38
38
39
39
- name : Install plugin
40
- uses : actions/checkout@v2
40
+ uses : actions/checkout@v3
41
41
with :
42
42
path : plugins/${{ github.event.repository.name }}
43
43
fetch-depth : 1
58
58
sudo -u postgres psql -c "CREATE ROLE $PGUSER LOGIN SUPERUSER PASSWORD '$PGPASSWORD';"
59
59
60
60
- name : Bundler cache
61
- uses : actions/cache@v2
61
+ uses : actions/cache@v3
62
62
with :
63
63
path : vendor/bundle
64
64
key : ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
83
83
run : echo "::set-output name=dir::$(yarn cache dir)"
84
84
85
85
- name : Yarn cache
86
- uses : actions/cache@v2
86
+ uses : actions/cache@v3
87
87
id : yarn-cache
88
88
with :
89
89
path : ${{ steps.yarn-cache-dir.outputs.dir }}
95
95
run : yarn install
96
96
97
97
- name : Fetch app state cache
98
- uses : actions/cache@v2
98
+ uses : actions/cache@v3
99
99
id : app-cache
100
100
with :
101
101
path : tmp/app-cache
You can’t perform that action at this time.
0 commit comments