diff options
| author | Joe Richey <joerichey@google.com> | 2022-04-08 16:36:23 -0700 |
|---|---|---|
| committer | Joe Richey <joerichey@google.com> | 2022-04-08 16:36:23 -0700 |
| commit | a224e769a478cc446c05dbfd5eb7e32d31933172 (patch) | |
| tree | a7ffb170f30e033ea57b4fb64ea816ba5ccf3ca9 /.github | |
| parent | 8cb1b12197186bdafea5ff90a2a9a7a0d66faaf2 (diff) | |
Use Go 1.18 in all other CI steps
Signed-off-by: Joe Richey <joerichey@google.com>
Diffstat (limited to '.github')
| -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 |