Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(go): update to Go v1.22.5 EE-7297 #12005

Merged
merged 1 commit into from
Jul 4, 2024
Merged
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/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
env:
DOCKER_HUB_REPO: portainerci/portainer-ce
EXTENSION_HUB_REPO: portainerci/portainer-docker-extension
GO_VERSION: 1.21.9
GO_VERSION: 1.22.5
NODE_VERSION: 18.x

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- ready_for_review

env:
GO_VERSION: 1.21.9
GO_VERSION: 1.22.5
NODE_VERSION: 18.x

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
GO_VERSION: 1.21.9
GO_VERSION: 1.22.5

jobs:
client-dependencies:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- '.github/workflows/pr-security.yml'

env:
GO_VERSION: 1.21.9
GO_VERSION: 1.22.5
NODE_VERSION: 18.x

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Test

env:
GO_VERSION: 1.21.9
GO_VERSION: 1.22.5
NODE_VERSION: 18.x

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-openapi-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- ready_for_review

env:
GO_VERSION: 1.21.9
GO_VERSION: 1.22.5
NODE_VERSION: 18.x

jobs:
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/portainer/portainer

go 1.21
go 1.22

toolchain go1.21.9
toolchain go1.22.5

require (
github.com/Masterminds/semver v1.5.0
Expand Down
Loading