diff options
| author | Joseph Richey <joerichey@google.com> | 2022-04-09 01:44:51 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-09 01:44:51 -0700 |
| commit | 53dc5f37339f40e78cd0e91b358322cc9e589185 (patch) | |
| tree | 68eb53440456ff6cc9c6ecef8b0567510de5310a /.github/workflows | |
| parent | ce8a5583c1cc2327cf65a048cfd1083225dad50e (diff) | |
| parent | ba0a96b04b08f8c8b533d7dab7e6326c5ecd6ace (diff) | |
Merge pull request #354 from google/staticcheck-fix
Upgrade dependencies to latest version
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a10d117..ae33ce2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 + with: + go-version: '1.18' - name: Install dependencies run: | sudo dpkg --add-architecture i386 @@ -62,6 +64,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 + with: + go-version: '1.18' - name: Install dependencies run: | sudo apt-get update @@ -109,6 +113,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 + with: + go-version: '1.18' - name: Install dependencies run: | sudo apt-get update @@ -122,6 +128,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 + with: + go-version: '1.18' - name: Install dependencies run: | sudo apt-get update |