diff options
author | Valery Piashchynski <[email protected]> | 2023-02-02 00:34:52 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-02-02 00:34:52 +0100 |
commit | 8e278ef3d1c57c7447aaa096b203a695b930de78 (patch) | |
tree | 9774e61729d9341eba8ac2e96bc37efb699ebd4a /.github/workflows | |
parent | 3a8ac04b490e83287fd09f0a315e9a19dea3247a (diff) |
chore(go): go 1.20
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dep.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_grpc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 67bc5f14..05816ca7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.20 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/release_dep.yml b/.github/workflows/release_dep.yml index 96f3c6d3..0b08f04b 100644 --- a/.github/workflows/release_dep.yml +++ b/.github/workflows/release_dep.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.20 - name: Download dependencies run: go mod download diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml index 1b002ea9..bd37f927 100644 --- a/.github/workflows/release_grpc.yml +++ b/.github/workflows/release_grpc.yml @@ -46,7 +46,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.20 - name: Check out code uses: actions/checkout@v3 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fba442ef..8f73c3a0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.19 + go-version: 1.20 - name: Run linter uses: golangci/[email protected] @@ -56,7 +56,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.20 - name: Check out code uses: actions/checkout@v3 @@ -94,7 +94,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 # action page: <https://github.com/actions/setup-go> with: - go-version: 1.19 + go-version: 1.20 - name: Check out code uses: actions/checkout@v3 |