From 00e784c9d491aa110d58be4ae18133fe01c86f39 Mon Sep 17 00:00:00 2001 From: ethella Date: Thu, 4 Sep 2025 10:13:38 -0700 Subject: [PATCH] bump checkout version --- .github/workflows/publish.yml | 6 +++--- .github/workflows/test.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7b5110f..b6c1d7c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: name: Publish if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: token: ${{ secrets.ADMIN_TOKEN }} @@ -18,9 +18,9 @@ jobs: run: git fetch --unshallow --tags - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v5 with: - node-version: 20 + node-version: 22 cache: 'yarn' - run: | yarn -v diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c04b056..bfd0548 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,14 +13,14 @@ jobs: runs-on: ubuntu-latest name: Run style/security checks & tests container: - image: node:16-slim + image: node:22-slim steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Setup node - uses: actions/setup-node@v3 + uses: actions/setup-node@v5 with: - node-version: 16 + node-version: 22 cache: 'yarn' - run: | yarn -v