Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit e883874

Browse files
chore: sync workflows
1 parent ad9e929 commit e883874

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/add-test-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
CONFIG_FILENAME: workflow-settings.json, workflow-details.json
2020
IGNORE_WARNING: 'true'
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- uses: technote-space/get-git-comment-action@v1
2323
- name: Get version
2424
uses: technote-space/get-next-version-action@v1

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Set running flag
1717
run: echo "RUNNING=1" >> $GITHUB_ENV
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- uses: technote-space/get-git-comment-action@v1
2020
- uses: technote-space/get-diff-action@gh-actions
2121
with:
@@ -28,7 +28,7 @@ jobs:
2828
run: echo "RUNNING=" >> $GITHUB_ENV
2929
if: "! env.GIT_DIFF"
3030

31-
- uses: actions/setup-node@v2
31+
- uses: actions/setup-node@v3
3232
with:
3333
node-version: 16
3434
cache: yarn
@@ -50,11 +50,11 @@ jobs:
5050
timeout-minutes: 10
5151
strategy:
5252
matrix:
53-
os: [ubuntu-18.04, ubuntu-latest, ubuntu-20.04, macos-latest]
53+
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest, macos-latest]
5454
steps:
5555
- name: Set running flag
5656
run: echo "RUNNING=1" >> $GITHUB_ENV
57-
- uses: actions/checkout@v2
57+
- uses: actions/checkout@v3
5858
- uses: technote-space/get-git-comment-action@v1
5959
- uses: technote-space/get-diff-action@gh-actions
6060
with:
@@ -82,7 +82,7 @@ jobs:
8282
echo "RUNNING=" >> $GITHUB_ENV
8383
fi
8484
85-
- uses: actions/setup-node@v2
85+
- uses: actions/setup-node@v3
8686
with:
8787
node-version: 16
8888
cache: yarn
@@ -110,8 +110,8 @@ jobs:
110110
timeout-minutes: 5
111111
if: startsWith(github.ref, 'refs/tags/')
112112
steps:
113-
- uses: actions/checkout@v2
114-
- uses: actions/setup-node@v2
113+
- uses: actions/checkout@v3
114+
- uses: actions/setup-node@v3
115115
with:
116116
node-version: 16
117117
cache: yarn
@@ -121,7 +121,7 @@ jobs:
121121
CONFIG_FILENAME: workflow-settings.json, workflow-details.json
122122
IGNORE_WARNING: 'true'
123123
- name: Release GitHub Actions
124-
uses: technote-space/release-github-actions@v7
124+
uses: technote-space/release-github-actions@v8
125125
with:
126126
OUTPUT_BUILD_INFO_FILENAME: build.json
127127
TEST_TAG_PREFIX: test/
@@ -148,7 +148,7 @@ jobs:
148148
fi
149149
env:
150150
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
151-
- uses: actions/checkout@v2
151+
- uses: actions/checkout@v3
152152
if: env.RUNNING
153153
- name: Check package version
154154
uses: technote-space/package-version-check-action@v1
@@ -170,14 +170,14 @@ jobs:
170170
if: env.RUNNING && matrix.target == 'gpr'
171171

172172
- name: Setup Node.js
173-
uses: actions/setup-node@v2
173+
uses: actions/setup-node@v3
174174
with:
175175
node-version: 16
176176
registry-url: https://registry.npmjs.org/
177177
cache: yarn
178178
if: env.RUNNING && matrix.target == 'npm'
179179
- name: Setup Node.js
180-
uses: actions/setup-node@v2
180+
uses: actions/setup-node@v3
181181
with:
182182
node-version: 16
183183
registry-url: https://npm.pkg.github.com

.github/workflows/pr-updated.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
IGNORE_WARNING: 'true'
6262
- name: Set running flag
6363
run: echo "RUNNING=1" >> $GITHUB_ENV
64-
- uses: actions/checkout@v2
64+
- uses: actions/checkout@v3
6565
with:
6666
ref: ${{ github.head_ref }}
6767
- name: Set running flag
@@ -107,7 +107,7 @@ jobs:
107107
env:
108108
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
109109

110-
- uses: actions/checkout@v2
110+
- uses: actions/checkout@v3
111111
with:
112112
ref: ${{ github.head_ref }}
113113
if: env.RUNNING

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set running flag
5252
run: echo "RUNNING2=1" >> $GITHUB_ENV
5353
if: env.RUNNING1 && steps.update_deps.outputs.result != 'succeeded' && github.event_name == 'pull_request' && github.event.action != 'closed' && startsWith(github.head_ref, 'release/')
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555
if: env.RUNNING2
5656
- name: Set running flag
5757
run: |

0 commit comments

Comments
 (0)