Skip to content

Commit

Permalink
build(deps): bump library/golang from 1.22-bookworm to 1.23-bookworm …
Browse files Browse the repository at this point in the history
…in the docker group (#309)

* build(deps): bump library/golang in the docker group

Bumps the docker group with 1 update: library/golang.


Updates `library/golang` from 1.22-bookworm to 1.23-bookworm

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <support@github.com>

* update go version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paramtamtam <7326800+tarampampam@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and tarampampam authored Sep 19, 2024
1 parent 85b4cdc commit 4490954
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.base.schema.json",
"name": "default",
"image": "golang:1.22-bookworm",
"image": "golang:1.23-bookworm",
"features": {
"ghcr.io/guiyomh/features/golangci-lint:0": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# -✂- this stage is used to develop and build the application locally -------------------------------------------------
FROM docker.io/library/golang:1.22-bookworm AS develop
FROM docker.io/library/golang:1.23-bookworm AS develop

# use the /var/tmp/go as the GOPATH to reuse the modules cache
ENV GOPATH="/var/tmp/go"
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 gh.tarampamp.am/error-pages

go 1.22
go 1.23

require (
github.com/stretchr/testify v1.9.0
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/perftest/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func NewCommand() *cli.Command { //nolint:funlen
Name: "connections",
Aliases: []string{"c"},
Usage: "Number of connections to keep open",
Value: max(16, uint64(runtime.NumCPU()*25)), //nolint:mnd,gosec
Value: max(16, uint64(runtime.NumCPU()*25)), //nolint:gosec,mnd
Validator: func(u uint64) error {
if u == 0 {
return errors.New("threads number can't be zero")
Expand Down

0 comments on commit 4490954

Please sign in to comment.