8000 build(go.mod): upgrade go to 1.23.6 from 1.22.0 by anthony-gomez-fastly · Pull Request #624 · fastly/go-fastly · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build(go.mod): upgrade go to 1.23.6 from 1.22.0 #624

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

Merged
merged 3 commits into from
Feb 26, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
go-version: 1.23.x
- name: Installing necessary tools
run: make dev-dependencies
shell: bash
Expand All @@ -51,7 +51,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.22.x, 1.23.x, 1.24.x]
go-version: [1.23.x, 1.24.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
### Bug fixes:

### Dependencies:

- build(deps): `github.com/google/go-cmp` from 0.6.0 to 0.7.0 ([#617](https://github.com/fastly/go-fastly/pull/617))
- build(deps): upgrade Go from 1.22 to 1.23 ([#624](https://github.com/fastly/go-fastly/pull/624/files))

## [v9.13.1](https://github.com/fastly/go-fastly/releases/tag/v9.13.1) (2025-02-14)

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ mod-download: ## Downloads the Go module.

dev-dependencies: ## Downloads the necessary dev dependencies.
@echo "==> Downloading development dependencies"
@$(GO) install honnef.co/go/tools/cmd/staticcheck@v0.4.7
@$(GO) install golang.org/x/tools/cmd/goimports@v0.24.0
@$(GO) install honnef.co/go/tools/cmd/staticcheck@v0.6.0
@$(GO) install golang.org/x/tools/cmd/goimports@v0.30.0
@if [[ "$$(uname)" == 'Darwin' ]]; then brew install semgrep; fi
.PHONY: dev-dependencies

Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)

go 1.22.0
toolchain go1.22.5
go 1.23.0

toolchain go1.23.6
Loading
0