Skip to content

Commit f533e6f

Browse files
authored
ci(.github/workflows): 'actions/checkout', 'actions/setup-node', 'codecov/codecov-action' v5로 업데이트 (#368)
1 parent 1adfa4d commit f533e6f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/broken-link-checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repository
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Enable Corepack
1717
run: corepack enable
1818

1919
- name: Install Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v5
2121
with:
2222
cache: 'yarn'
2323
cache-dependency-path: 'yarn.lock'

.github/workflows/codecov.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Enable Corepack
2020
run: corepack enable
2121

2222
- name: Install Node.js
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v5
2424
with:
2525
node-version-file: '.nvmrc'
2626
cache: 'yarn'
@@ -32,6 +32,6 @@ jobs:
3232
run: yarn test
3333

3434
- name: Upload Coverage to Codecov
35-
uses: codecov/codecov-action@v4
35+
uses: codecov/codecov-action@v5
3636
env:
3737
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Enable Corepack
1818
run: corepack enable
1919

2020
- name: Install Node.js
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v5
2222
with:
2323
cache: 'yarn'
2424
node-version-file: '.nvmrc'

0 commit comments

Comments
 (0)