Skip to content

Commit b32c85d

Browse files
Merge pull request #7 from hankei6km/dependabot/github_actions/actions/checkout-3
2 parents 4e6f7a8 + b1df5bd commit b32c85d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out code
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Cleanup
2121
run: |

.github/workflows/gh_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
environment: gh_pkg
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

1616
# .npmrc ファイルをセットアップして GitHub Packages に公開する
1717
- uses: actions/setup-node@v3

.github/workflows/npm_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
echo 'tag_name: ${{ github.event.release.tag_name }}'
2525
exit 1
2626
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828

2929
# npm に公開するように .npmrc ファイルを設定する
3030
- uses: actions/setup-node@v3

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
node-version: [16.x, 18.x, 20.x]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121

2222
- name: Use Node.js ${{ matrix.node-version }}
2323
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)