Skip to content

Commit

Permalink
chore(ci): Bump actions/checkout and actions/setup-node to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
dividedmind committed Mar 19, 2024
1 parent 644a1d7 commit 79c5374
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: yarn
- run: yarn lint

Expand Down Expand Up @@ -35,8 +35,8 @@ jobs:
- 27017:27017

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- run: yarn
Expand All @@ -49,8 +49,8 @@ jobs:
windows-test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: yarn
- run: yarn prepack
- run: yarn test || yarn jest --no-silent --verbose --onlyFailures
Expand All @@ -66,11 +66,11 @@ jobs:
if: github.ref_name == 'main'
needs: [lint, test]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SEMANTIC_RELEASE_BOT_GITHUB_TOKEN }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
- run: yarn
- run: yarn prepack
- run: yarn semantic-release
Expand Down

0 comments on commit 79c5374

Please sign in to comment.