Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.26'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[medium] version-consistency

Go version in workflows (1.26) does not match go.mod version (1.23.0). The go.mod should be updated in tandem. Additionally, test.yml matrix still uses 1.23.x and slack-message.yml container image remains golang:1.22, creating further version fragmentation.

Suggested fix: Coordinate with a go.mod update to go 1.26. Also consider updating the test.yml matrix and the slack-message.yml container image for full consistency.


- name: golangci-lint
uses: golangci/golangci-lint-action@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.26'

- name: Install required tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.26'

- name: Fetch URL Content
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.26'

- name: Run e2e coverage tests
run: make test-e2e-cover
Expand Down
Loading