Skip to content

Commit

Permalink
Merge pull request #260 from oddbird/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
jgerigmeyer authored Sep 11, 2023
2 parents f578ae5 + ca6ff64 commit 86a4b03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
steps:
- name: Check out from release
if: github.event_name == 'release'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check out from manual input
if: github.event_name == 'workflow_dispatch'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- uses: actions/setup-node@v3
Expand All @@ -34,7 +34,7 @@ jobs:
- run: yarn install
- run: yarn docs
- name: Clone docs branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: docs-branch
ref: oddleventy-docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
node: ['14', 'lts/*']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
Expand All @@ -24,7 +24,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
Expand Down

0 comments on commit 86a4b03

Please sign in to comment.