diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31d4616..a2f8996 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,19 +14,19 @@ jobs: id-token: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - name: Setup Node.js environment - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: # File containing the version Spec of the version to use. Examples: .nvmrc, .node-version, .tool-versions. node-version-file: '.nvmrc' # optional - name: Setup pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: # Version of pnpm to install version: latest # optional @@ -39,7 +39,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} diff --git a/.github/workflows/test-and-benchmark.yml b/.github/workflows/test-and-benchmark.yml index 4c13a38..3aafd78 100644 --- a/.github/workflows/test-and-benchmark.yml +++ b/.github/workflows/test-and-benchmark.yml @@ -27,19 +27,19 @@ jobs: contents: read steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - name: Setup Node.js environment - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: # File containing the version Spec of the version to use. Examples: .nvmrc, .node-version, .tool-versions. node-version-file: '.nvmrc' # optional - name: Setup pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: # Version of pnpm to install version: latest # optional @@ -52,7 +52,7 @@ jobs: run: | echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Setup pnpm cache with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}