Skip to content

Commit

Permalink
ci: bump job version
Browse files Browse the repository at this point in the history
  • Loading branch information
2nthony committed Mar 27, 2024
1 parent fcfa99c commit 0c64dc0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-yarn-store
with:
Expand All @@ -51,13 +51,13 @@ jobs:
needs: ["test"]
if: ${{ !contains(github.event.head_commit.message, 'skip-release') && !contains(github.event.head_commit.message, 'skip-ci') && github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-yarn-store
with:
Expand Down

0 comments on commit 0c64dc0

Please sign in to comment.