depbump: Upgrade Go to 1.21 (#352)

This commit is contained in:
James Read 2024-07-11 23:33:36 +01:00 committed by GitHub
parent 482ef0e5e8
commit 897cc0e034
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View File

@ -33,9 +33,12 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '^1.18.0' go-version-file: 'go.mod'
cache: true cache: true
- name: Print go version
run: go version
- name: grpc - name: grpc
run: make -w grpc run: make -w grpc

View File

@ -31,9 +31,12 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '^1.18.0' go-version-file: 'go.mod'
cache: true cache: true
- name: Print go version
run: go version
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v2 uses: docker/login-action@v2
with: with:

View File

@ -21,9 +21,12 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: '^1.18.0' go-version-file: 'go.mod'
cache: true cache: true
- name: Print go version
run: go version
- name: deps - name: deps
run: make -w grpc run: make -w grpc