From 152c5bd3b1e4bfe54f90e384de91f9189e19bdc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 15:22:04 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/update-lock-file.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e45cf2c..783c1e45 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Bun uses: oven-sh/setup-bun@v2 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f025324f..3c6dcde8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: GH_TOKEN: ${{ github.token }} steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Create release run: | gh release create ${{ github.ref_name }} \ @@ -31,7 +31,7 @@ jobs: GH_TOKEN: ${{ github.token }} steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Bun uses: oven-sh/setup-bun@v2 with: diff --git a/.github/workflows/update-lock-file.yml b/.github/workflows/update-lock-file.yml index fb0d1ab5..b019766d 100644 --- a/.github/workflows/update-lock-file.yml +++ b/.github/workflows/update-lock-file.yml @@ -17,7 +17,7 @@ jobs: if: github.actor == 'dependabot[bot]' steps: - name: Checkout source code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.head_ref }} token: ${{ secrets.GITHUB_TOKEN }}