From a18f1b68e8e2eaaeb27e250567a7e715165aaf30 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 28 Jan 2026 13:16:55 -0800 Subject: [PATCH] CI: auto-detect go runtime version from go.mod (#9766) --- .github/workflows/golang-test-lint.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/golang-test-lint.yml b/.github/workflows/golang-test-lint.yml index cd3e27cb7b..6531694d5c 100644 --- a/.github/workflows/golang-test-lint.yml +++ b/.github/workflows/golang-test-lint.yml @@ -15,11 +15,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Go tooling - uses: actions/setup-go@v3 + uses: actions/setup-go@v6 with: - go-version: "1.25" + go-version-file: bskyweb/go.mod - name: Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt - name: Check @@ -32,11 +32,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Git Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Go tooling - uses: actions/setup-go@v3 + uses: actions/setup-go@v6 with: - go-version: "1.25" + go-version-file: bskyweb/go.mod - name: Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt - name: Lint