From 581e889d8bbe55e897a6bafa3eb7072cf3636110 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 11 Nov 2025 16:22:40 +0100 Subject: [PATCH] build: update Linux and Windows to use latest versions of GH actions/Go 1.25 Signed-off-by: deadprogram --- .github/workflows/linux.yml | 2 +- .github/workflows/windows.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 8a56d1cd..a1186df9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -17,7 +17,7 @@ jobs: # We're not on a multi-user machine, so this is safe. run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: TinyGo version check run: tinygo version - name: Run unit tests diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2a759173..60a0db2a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -13,11 +13,11 @@ jobs: runs-on: windows-2022 steps: - name: Install Go - uses: actions/setup-go@v4.1.0 + uses: actions/setup-go@v6 with: - go-version: '1.21.0' + go-version: '1.25' - name: Checkout - uses: actions/checkout@v3.6.0 + uses: actions/checkout@v5 - name: Run unit tests run: go test - name: "Run Windows smoke tests"