Skip to content

Commit 702788f

Browse files
authored
ci: fix cd
BREAKING CHANGE: upgrade buchu to 2.0
1 parent 7e705d8 commit 702788f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/cd.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@ on:
77
jobs:
88
build:
99
if: "!contains(github.event.head_commit.message, 'skip ci')"
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-20.04
1111

1212
strategy:
1313
matrix:
1414
node-version: [14.x]
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- name: Checkout repository
18+
uses: actions/checkout@v3
19+
with:
20+
persist-credentials: false
21+
1822
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v3
2024
with:
2125
node-version: ${{ matrix.node-version }}
2226

0 commit comments

Comments
 (0)