Skip to content

Commit

Permalink
Bump Go version to 1.20.1 (stellar#421)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Bellamy <[email protected]>
  • Loading branch information
tamirms and Paul Bellamy authored Feb 16, 2023
1 parent 55487b2 commit f596ae2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Run golangci-lint
uses: golangci/golangci-lint-action@537aa1903e5d359d0b27dbc19ddd22c5087f3fbc # version v3.2.0
with:
version: v1.49.0 # this is the golangci-lint version
version: v1.51.1 # this is the golangci-lint version
args: --issues-exit-code=0 # exit without errors for now - won't fail the build
github-token: ${{ secrets.GITHUB_TOKEN }}
only-new-issues: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/soroban-rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
go: [1.19.1]
go: [1.20.1]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
# because it uses apt-get and some OSs (e.g. windows) don't have it
- uses: actions/setup-go@v3
with:
go-version: 1.19.1
go-version: 1.20.1

- run: rustup update
- run: rustup target add ${{ matrix.rust_target }}
Expand All @@ -85,7 +85,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
go: [1.19.1]
go: [1.20.1]
env:
SOROBAN_RPC_INTEGRATION_TESTS_ENABLED: true
SOROBAN_RPC_INTEGRATION_TESTS_CAPTIVE_CORE_BIN: /usr/bin/stellar-core
Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-rpc/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.1 as build
FROM golang:1.20.1 as build
ARG RUST_TOOLCHAIN_VERSION=stable
ARG REPOSITORY_VERSION

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stellar/soroban-tools

go 1.18
go 1.20

require (
github.com/creachadair/jrpc2 v0.41.1
Expand Down

0 comments on commit f596ae2

Please sign in to comment.