-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Bump go version to 1.21.1 (#2541)
Bump Go version to 1.21.1 because QGB repo can't depend on celestia-app due to: ``` go: module github.com/celestiaorg/quantum-gravity-bridge/[email protected] requires go >= 1.21.1; switching to go1.21.1 ``` (cherry picked from commit cb82cc3) # Conflicts: # .github/workflows/nightly.yml
- Loading branch information
1 parent
d992eda
commit cb7c45b
Showing
6 changed files
with
33 additions
and
7 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
workflow_call: | ||
|
||
env: | ||
GO_VERSION: '1.21' | ||
GO_VERSION: '1.21.1' | ||
|
||
jobs: | ||
golangci-lint: | ||
|
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: nightly | ||
on: | ||
schedule: | ||
# runs every day at 6am UTC | ||
- cron: "0 6 * * *" | ||
|
||
env: | ||
GO_VERSION: '1.21.1' | ||
|
||
jobs: | ||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
|
||
- name: Setup kubeconfig | ||
env: | ||
KUBECONFIG_FILE: ${{ secrets.KNUU_KUBECONFIG_FILE }} | ||
run: | | ||
mkdir -p $HOME/.kube | ||
echo "${KUBECONFIG_FILE}" > $HOME/.kube/config | ||
- name: Run e2e tests | ||
run: make test-e2e |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
workflow_call: | ||
|
||
env: | ||
GO_VERSION: '1.21' | ||
GO_VERSION: '1.21.1' | ||
|
||
jobs: | ||
test: | ||
|
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