Skip to content

Commit e71dc29

Browse files
authored
Merge pull request #320 from oddbird/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents cfcd111 + db2ef14 commit e71dc29

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
- name: Check out from release
2323
if: github.event_name == 'release'
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
- name: Check out from manual input
2626
if: github.event_name == 'workflow_dispatch'
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
ref: ${{ inputs.ref }}
3030
- run: corepack enable
@@ -35,7 +35,7 @@ jobs:
3535
- run: yarn install
3636
- run: yarn docs
3737
- name: Clone docs branch
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
path: docs-branch
4141
ref: oddleventy-docs

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
node: ['20', 'lts/*']
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- run: corepack enable
1717
- uses: actions/setup-node@v4
1818
with:
@@ -25,7 +25,7 @@ jobs:
2525
name: Lint
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- run: corepack enable
3030
- uses: actions/setup-node@v4
3131
with:

0 commit comments

Comments
 (0)