From bfe031f32bdde5e25c3e9746654cab16ec5837be Mon Sep 17 00:00:00 2001 From: Ludovic Guegan Date: Tue, 14 Nov 2023 22:45:39 +0000 Subject: [PATCH] Update github action to use the latest stable version --- .github/workflows/go.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 52fafb1..56b212c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,14 +7,14 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.13 - uses: actions/setup-go@v1 + - name: Set up Go stable version + uses: actions/setup-go@v4 with: - go-version: 1.13 + go-version: 'stable' id: go - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: Get dependencies run: |