Skip to content

Commit 93a74ab

Browse files
committed
Checkout v3
1 parent d96b070 commit 93a74ab

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

.github/workflows/homebrew.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ jobs:
99
homebrew:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 0
15+
persist-credentials: false
16+
token: ${{secrets.gh_token}}
1317
- uses: actions/setup-node@v2
1418
with:
1519
node-version: 16

.github/workflows/notify.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ jobs:
88
notify:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
12+
with:
13+
fetch-depth: 0
14+
persist-credentials: false
15+
token: ${{secrets.gh_token}}
1216
- uses: actions/setup-node@v2
1317
with:
1418
node-version: 16

.github/workflows/pr-validator.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ jobs:
1111
pr-validation:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
persist-credentials: false
18+
token: ${{secrets.gh_token}}
1519
- run : |
1620
if [ "$TARGET_BRANCH" == "master" ] && [ "$SOURCE_BRANCH" == "beta" ]; then
1721
echo "Merge from $SOURCE_BRANCH to $TARGET_BRANCH is valid"

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
with:
2020
fetch-depth: 0
2121
persist-credentials: false
22-
- uses: actions/setup-node@v2
22+
token: ${{secrets.gh_token}}
23+
- uses: actions/setup-node@v3
2324
with:
2425
node-version: 16
2526
registry-url: 'https://registry.npmjs.org'

0 commit comments

Comments
 (0)