Skip to content

Commit 84d4331

Browse files
DEV: Update CI workflows (discourse#64)
Co-authored-by: discoursebuild <build@discourse.org>
1 parent 3bbee89 commit 84d4331

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/plugin-linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919

2020
- name: Set up Node.js
21-
uses: actions/setup-node@v2
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version: 16
2424
cache: yarn

.github/workflows/plugin-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
build_type: ["backend", "frontend-legacy", "frontend"]
3232

3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v3
3535
with:
3636
repository: discourse/discourse
3737
fetch-depth: 1
3838

3939
- name: Install plugin
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141
with:
4242
path: plugins/${{ github.event.repository.name }}
4343
fetch-depth: 1
@@ -58,7 +58,7 @@ jobs:
5858
sudo -u postgres psql -c "CREATE ROLE $PGUSER LOGIN SUPERUSER PASSWORD '$PGPASSWORD';"
5959
6060
- name: Bundler cache
61-
uses: actions/cache@v2
61+
uses: actions/cache@v3
6262
with:
6363
path: vendor/bundle
6464
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
@@ -83,7 +83,7 @@ jobs:
8383
run: echo "::set-output name=dir::$(yarn cache dir)"
8484

8585
- name: Yarn cache
86-
uses: actions/cache@v2
86+
uses: actions/cache@v3
8787
id: yarn-cache
8888
with:
8989
path: ${{ steps.yarn-cache-dir.outputs.dir }}
@@ -95,7 +95,7 @@ jobs:
9595
run: yarn install
9696

9797
- name: Fetch app state cache
98-
uses: actions/cache@v2
98+
uses: actions/cache@v3
9999
id: app-cache
100100
with:
101101
path: tmp/app-cache

0 commit comments

Comments
 (0)