From 794d3369f9cc57427e5417cf433427ed981b9ec9 Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Sat, 7 Dec 2024 18:50:16 +0100 Subject: [PATCH] fix workflow --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 483fa51..b5402a0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,17 +7,17 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go: ["1.19.x","1.18.x","1.7.x"] # code works with 1.3.x but we need 1.7.x for Benchmark.Run + go: ["1.19.x","1.18.x"] # code works with 1.3.x but we need 1.7.x for Benchmark.Run steps: - name: Setup Go ${{ matrix.go }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} id: go - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 with: path: go/src/github.com/magiconair/properties