From b804f9a8c04043f716e94380dd8a4a276d90f669 Mon Sep 17 00:00:00 2001 From: Matt Lewis Date: Fri, 19 Apr 2024 19:00:51 +0100 Subject: [PATCH] ci: upgrade all github actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71feecac7..e7d4aa610 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,14 +9,14 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: corepack enable - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: 'pnpm' - run: pnpm install - run: pnpm test - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}