From 2e6bbfd8df6fd80ce05ae8107a2cf99d45bddb3d Mon Sep 17 00:00:00 2001 From: Anton Tiurin Date: Tue, 7 Oct 2025 11:47:55 +0100 Subject: [PATCH] Update Go version and actions in workflow --- .github/workflows/go.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 21f3934..a45e1af 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,15 +13,17 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - go-version: [1.13.x, stable] + go-version: ['1.21.x', 'stable'] os: [macos-latest, windows-latest, ubuntu-latest] steps: - - name: Set up Go - uses: actions/setup-go@v2 + - name: Set up Go ${{ matrix.go-version }} + uses: actions/setup-go@v5 + with: + go-version: ${{ matrix.go-version }} id: go - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Generate run: go generate cmd/varlink-go-certification/orgvarlinkcertification/generate.go