Skip to content

Commit

Permalink
ci: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cahnory committed Feb 17, 2024
1 parent fcd7907 commit 9c1bcf9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
- name: Checkout to ${{ github.ref }}
uses: actions/checkout@v4
- name: Setup turbo cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules/.cache/turbo
key: ${{ matrix.os }}-node-${{ matrix.node-version }}-turbo-${{ github.sha }}
restore-keys: |
${{ matrix.os }}-node-${{ matrix.node-version }}-turbo-
- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: ^8.6.2
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
Expand Down Expand Up @@ -76,18 +76,18 @@ jobs:
- name: Checkout to ${{ github.ref }}
uses: actions/checkout@v4
- name: Setup turbo cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules/.cache/turbo
key: ${{ matrix.os }}-node-${{ matrix.node-version }}-turbo-${{ github.sha }}
restore-keys: |
${{ matrix.os }}-node-${{ matrix.node-version }}-turbo-
- name: Install pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v3
with:
version: ^8.6.2
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
Expand Down

0 comments on commit 9c1bcf9

Please sign in to comment.