From 6085d9ce88804f60f6dc1bb9ef69c44b9fd888a8 Mon Sep 17 00:00:00 2001 From: Clay McGinnis Date: Wed, 29 Apr 2026 16:18:35 -0700 Subject: [PATCH] ci: bump checkout and setup-go to v6 GitHub flagged actions/checkout@v4 and actions/setup-go@v5 as Node.js 20 actions, which are deprecated and will be removed from runners on 2026-09-16. Bumping to v6 of each, both of which run on Node.js 24. --- .github/workflows/pr-validate.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/tagged-release.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml index 61b4c48..f5a3251 100644 --- a/.github/workflows/pr-validate.yml +++ b/.github/workflows/pr-validate.yml @@ -12,10 +12,10 @@ jobs: runs-on: depot-ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod cache: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab4fc08..76f1c9b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,12 +19,12 @@ jobs: runs-on: depot-ubuntu-24.04-4 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod cache: true diff --git a/.github/workflows/tagged-release.yml b/.github/workflows/tagged-release.yml index 95efeda..42b1181 100644 --- a/.github/workflows/tagged-release.yml +++ b/.github/workflows/tagged-release.yml @@ -14,12 +14,12 @@ jobs: runs-on: depot-ubuntu-24.04-4 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Setup Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod cache: true