From bacb334f1bc68b2dfc710cda281b95fa4403f83a Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 12 May 2026 10:51:57 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/release-please.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3fd9225..174a60a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 @@ -19,7 +19,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 @@ -28,7 +28,7 @@ jobs: tsc: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 @@ -37,7 +37,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6 with: node-version: 24 diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 4f42d2f8..97c57b42 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -20,7 +20,7 @@ jobs: token: ${{ github.token }} release-type: node # The logic below handles the npm publication: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # these if statements ensure that a publication only occurs when # a new release is created: if: ${{ steps.release.outputs.release_created }}