Skip to content

Commit

Permalink
upgrade go version from go 1.19 to go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
dmigwi committed Aug 21, 2023
1 parent c92100a commit 87e9639
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v1

- name: Set up Go 1.19
uses: actions/setup-go@v2
- name: Set up Go 1.20.0
uses: actions/setup-go@v1
with:
go-version: 1.19
go-version: '1.20'
id: go

- name: Libraries for gio
Expand All @@ -20,13 +20,13 @@ jobs:
sudo apt install libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
- name: Cache (dependencies)
uses: actions/cache@v2
uses: actions/cache@v1
id: cache
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-v1-${{ hashFiles('**/go.sum') }}
key: ${{ runner.os }}-go-v2-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-v1
${{ runner.os }}-go-v2
- name: Install linter
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.53.3
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/crypto-power/cryptopower

go 1.19
go 1.20.0

require (
decred.org/dcrwallet/v4 v4.0.0-20230809150859-a87fa843495e
Expand Down

0 comments on commit 87e9639

Please sign in to comment.