From 2d6e22105d2daed1dc5b586c0442e2941949a165 Mon Sep 17 00:00:00 2001 From: Logan Jones Date: Sat, 14 Feb 2026 01:44:41 -0600 Subject: [PATCH] chore(deps)!: update actions/checkout action to v6 (#45) Co-authored-by: onion-4-dinner <15676555+onion-4-dinner@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 2 +- .github/workflows/renovate.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f54bd18..63cf5c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: artifact: yellowjacket-windows-amd64.exe runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ github.event.release.tag_name }} submodules: recursive diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04120a9..8124e8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: name: Go Checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: @@ -94,7 +94,7 @@ jobs: name: Go Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: @@ -117,7 +117,7 @@ jobs: name: Code Generation Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: @@ -151,7 +151,7 @@ jobs: run: working-directory: frontend steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: pnpm/action-setup@v4 with: @@ -192,7 +192,7 @@ jobs: build-name: yellowjacket.exe runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: submodules: recursive diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 516a289..e117836 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: # persist-credentials: false prevents actions/checkout from setting up # the credential helper with GITHUB_TOKEN. We configure git auth manually # with the PAT so that tag pushes trigger downstream workflows. - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 9aac89b..6216feb 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -18,7 +18,7 @@ jobs: name: Renovate runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # Go is required for postUpgradeTasks (go generate runs templ + sqlc). - uses: actions/setup-go@v6