Skip to content

Commit

Permalink
Merge pull request #1739 from nextstrain/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions/checkout-4

Bump actions/checkout from 2 to 4
  • Loading branch information
victorlin authored Feb 5, 2024
2 parents 62edb38 + 139fe12 commit 69d007a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
Expand All @@ -28,7 +28,7 @@ jobs:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
Expand All @@ -45,7 +45,7 @@ jobs:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
Expand All @@ -59,7 +59,7 @@ jobs:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
Expand All @@ -72,7 +72,7 @@ jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
Expand All @@ -85,7 +85,7 @@ jobs:
bundlesize:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
Expand All @@ -96,7 +96,7 @@ jobs:
check-lockfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
# Node.js version doesn't matter; npm version is more important when
Expand All @@ -117,7 +117,7 @@ jobs:
needs: [build, unit-test, smoke-test, lint, check-lockfile]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make_pr_for_downstream_repo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
node-version: '16'

- name: Checkout downstream repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
path: ${{ env.DESTINATION_REPO_DIR }}
Expand Down

0 comments on commit 69d007a

Please sign in to comment.