-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,10 +41,10 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go 1.21 | ||
- name: Set up Go 1.22 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: true | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go 1.21 | ||
- name: Set up Go 1.22 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: false # don't save & restore build caches because golangci-lint action does it internally | ||
- name: Get dependencies | ||
|
@@ -38,10 +38,10 @@ jobs: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'wavesplatform/gowaves' | ||
|
||
steps: | ||
- name: Set up Go 1.21 | ||
- name: Set up Go 1.22 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: true | ||
|
||
|
@@ -74,10 +74,10 @@ jobs: | |
if: github.event_name == 'pull_request' && github.repository == 'wavesplatform/gowaves' | ||
|
||
steps: | ||
- name: Set up Go 1.21 | ||
- name: Set up Go 1.22 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: true | ||
id: go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |
if: (github.event_name == 'workflow_dispatch' || github.event.review.state == 'APPROVED') && github.repository == 'wavesplatform/gowaves' | ||
|
||
steps: | ||
- name: Set up Go 1.21 | ||
- name: Set up Go 1.22 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: true | ||
id: go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,10 @@ jobs: | |
if: github.repository == 'wavesplatform/gowaves' | ||
|
||
steps: | ||
- name: Set up Go 1.21 | ||
- name: Set up Go 1.22 | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.x | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: true | ||
id: go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.21.12 | ||
go-version: 1.22.x | ||
check-latest: true | ||
cache: true | ||
- name: Run go list | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/wavesplatform/gowaves | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
filippo.io/edwards25519 v1.1.0 | ||
|