From 807c59fe21860960e707a532565f4e79df9a97e2 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 18 Mar 2022 01:18:25 +0200 Subject: [PATCH] Update actions to checkout@v3 and setup-go@v3 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d95f655..63cebdc 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -10,10 +10,10 @@ jobs: matrix: go-version: [1.17] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Go ${{ matrix.go-version }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }}