From 71057f75f5f99cebd94e21cbc9ee489998320826 Mon Sep 17 00:00:00 2001 From: Ocheretovich Oksana Date: Fri, 27 Mar 2026 16:15:12 +0200 Subject: [PATCH] chore: update actions/checkout to v6 and actions/cache to v5 --- .github/workflows/pnpm-format.yml | 2 +- .github/workflows/tests.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pnpm-format.yml b/.github/workflows/pnpm-format.yml index 1be36e1a6b..338c7ea8cc 100644 --- a/.github/workflows/pnpm-format.yml +++ b/.github/workflows/pnpm-format.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} fetch-depth: 20 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bb22f4c721..b851c9860a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: name: Install dependencies runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: ./.github/actions/install-dependencies build: @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest needs: [install] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: ./.github/actions/install-dependencies - run: pnpm clean - run: pnpm build @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest needs: [build] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: ./.github/actions/install-dependencies - name: Install Foundry uses: foundry-rs/foundry-toolchain@v1 @@ -47,11 +47,11 @@ jobs: # runs-on: ubuntu-latest # needs: [install] # steps: - # - uses: actions/checkout@v4 + # - uses: actions/checkout@v6 # - uses: actions/setup-node@v4 # with: # node-version: 20 - # - uses: actions/cache@v4 + # - uses: actions/cache@v5 # id: pnpm-cache # with: # path: |