From 6821a157db9551081eba604e8b46b44a77f525d1 Mon Sep 17 00:00:00 2001 From: Ryan Christian Date: Thu, 26 Sep 2024 18:23:43 -0500 Subject: [PATCH] ci: Bump actions versions --- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e539188a..38ed5359 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,17 +19,17 @@ jobs: pull-requests: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Setup pnpm - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v3 with: version: 8 run_install: false @@ -39,7 +39,7 @@ jobs: run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Use pnpm store - uses: actions/cache@v3 + uses: actions/cache@v4 id: pnpm-cache with: path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5517f6f1..2a2e9aed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,17 +14,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Setup pnpm - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v3 with: version: 8 run_install: false @@ -34,7 +34,7 @@ jobs: run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Use pnpm store - uses: actions/cache@v3 + uses: actions/cache@v4 id: pnpm-cache with: path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }}