Skip to content

Commit

Permalink
*: bump go to version 1.22 (#3092)
Browse files Browse the repository at this point in the history
Bump go version. Should be safe, as we are already using go 1.22 in the pipelines without any issues.

category: misc
ticket: none
  • Loading branch information
KaloyanTanev committed Jun 5, 2024
1 parent 6ce6550 commit afaf3e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ on:
schedule:
- cron: '18 19 * * 6'

env:
GOLANG_VERSION: '1.22'

jobs:
analyze:
name: Analyze
Expand All @@ -40,6 +43,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOLANG_VERSION }}

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
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/obolnetwork/charon

go 1.21
go 1.22

require (
github.com/attestantio/go-eth2-client v0.21.4
Expand Down

0 comments on commit afaf3e8

Please sign in to comment.