From 1613b2282dac6157e492f25f2262f37084386603 Mon Sep 17 00:00:00 2001 From: Steven Nunez Date: Fri, 9 Jan 2026 21:39:18 +0000 Subject: [PATCH 1/2] Fix release workflow Go version --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0dfa818..a651edb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,5 +10,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: cli/gh-extension-precompile@v1 \ No newline at end of file + - uses: actions/checkout@v4 + - uses: cli/gh-extension-precompile@v2 + with: + go_version_file: go.mod \ No newline at end of file From 9f54bce630f9f43484224c8b9214714d3b1ca260 Mon Sep 17 00:00:00 2001 From: Steven Nunez Date: Fri, 9 Jan 2026 21:41:36 +0000 Subject: [PATCH 2/2] Bump actions/checkout to v6 --- .github/workflows/go.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fae29cf..ac7476c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,7 +19,7 @@ jobs: go-version: 1.23 - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Restore Go modules cache uses: actions/cache@v3 diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index ac8ced4..46ae9f9 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-go@v3 with: go-version: '^1.19.0' - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a651edb..a31b96d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: cli/gh-extension-precompile@v2 with: go_version_file: go.mod \ No newline at end of file