From 33d8ab84ea60bc4d2a0ba93c572b7cac006a16dd Mon Sep 17 00:00:00 2001 From: EGOIST Date: Fri, 16 Jun 2023 14:04:35 +0800 Subject: [PATCH] chore: update github actions --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74f9730..234f31f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,14 +20,14 @@ 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@v2 + - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Cache ~/.pnpm-store - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-pnpm-store with: @@ -52,12 +52,12 @@ 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@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: 18.x - name: Cache ~/.pnpm-store - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-pnpm-store with: