From 6565aecf5c8641a629b49d07da60e6c73d23ee21 Mon Sep 17 00:00:00 2001 From: Christian Mouchet Date: Tue, 17 May 2022 13:59:42 +0200 Subject: [PATCH] switching setup-go action to v3 --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e759933..d537cdab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,13 +10,11 @@ jobs: with: fetch-depth: 1 - name: Setup Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: go-version: 1.17 - name: Setup tools - run: | - export PATH=${PATH}:`go env GOPATH`/bin - make get_tools + run: make get_tools - name: Run Makefile checks run: make static_check @@ -32,7 +30,7 @@ jobs: - uses: actions/checkout@v2 - name: Setup Go - uses: actions/setup-go@v1 + uses: actions/setup-go@v3 with: go-version: ${{ matrix.go }}