Skip to content

Commit

Permalink
build(deps): bump golang from 1.21.3-alpine to 1.21.5-alpine (#585)
Browse files Browse the repository at this point in the history
* build(deps): bump golang from 1.21.3-alpine to 1.21.5-alpine

Bumps golang from 1.21.3-alpine to 1.21.5-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* build(deps): update go-sqlite3 to resolve pread/pwrite buile issue following mattn/go-sqlite3#1177

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Idan Frimark <idanf@cisco.com>
  • Loading branch information
dependabot[bot] and FrimIdan committed Dec 26, 2023
1 parent d485744 commit 31aed86
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.backend
Expand Up @@ -7,7 +7,7 @@ COPY ui .
RUN npm i
RUN npm run build

FROM golang:1.21.3-alpine AS builder
FROM golang:1.21.5-alpine AS builder

RUN apk add --update --no-cache gcc g++ git ca-certificates build-base

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cis_docker_benchmark_scanner
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.2
FROM golang:1.21.3-alpine AS builder
FROM golang:1.21.5-alpine AS builder

RUN apk add --update --no-cache gcc g++ git ca-certificates build-base

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cli
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.2
FROM golang:1.21.3-alpine AS builder
FROM golang:1.21.5-alpine AS builder

RUN apk add --update --no-cache gcc g++ git ca-certificates build-base

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.runtime_k8s_scanner
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.2
FROM golang:1.21.3-alpine AS builder
FROM golang:1.21.5-alpine AS builder

RUN apk add --update --no-cache gcc g++ git ca-certificates build-base

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.sbom_db
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.2
FROM golang:1.21.3-alpine AS builder
FROM golang:1.21.5-alpine AS builder

RUN apk add --update --no-cache gcc g++ git ca-certificates build-base

Expand Down
2 changes: 1 addition & 1 deletion backend/go.mod
Expand Up @@ -137,7 +137,7 @@ require (
github.com/magiconair/properties v1.8.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-sqlite3 v1.14.15 // indirect
github.com/mattn/go-sqlite3 v1.14.19 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/mholt/archiver/v3 v3.5.1 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions backend/go.sum
Expand Up @@ -862,8 +862,8 @@ github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh
github.com/mattn/go-shellwords v1.0.6/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o=
github.com/mattn/go-shellwords v1.0.12/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y=
github.com/mattn/go-sqlite3 v1.14.9/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
github.com/mattn/go-sqlite3 v1.14.15 h1:vfoHhTN1af61xCRSWzFIWzx2YskyMTwHLrExkBOjvxI=
github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
github.com/mattn/go-sqlite3 v1.14.19 h1:fhGleo2h1p8tVChob4I9HpmVFIAkKGpiukdrgQbWfGI=
github.com/mattn/go-sqlite3 v1.14.19/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo=
Expand Down
2 changes: 1 addition & 1 deletion sbom_db/backend/go.mod
Expand Up @@ -38,7 +38,7 @@ require (
github.com/josharian/intern v1.0.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mattn/go-sqlite3 v1.14.9 // indirect
github.com/mattn/go-sqlite3 v1.14.19 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
Expand Down
3 changes: 2 additions & 1 deletion sbom_db/backend/go.sum
Expand Up @@ -242,8 +242,9 @@ github.com/mailru/easyjson v0.7.6 h1:8yTIVnZgCoiM1TgqoeTl+LfU5Jg6/xL3QhGQnimLYnA
github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE=
github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0=
github.com/mattn/go-sqlite3 v1.14.9 h1:10HX2Td0ocZpYEjhilsuo6WWtUqttj2Kb0KtD86/KYA=
github.com/mattn/go-sqlite3 v1.14.9/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
github.com/mattn/go-sqlite3 v1.14.19 h1:fhGleo2h1p8tVChob4I9HpmVFIAkKGpiukdrgQbWfGI=
github.com/mattn/go-sqlite3 v1.14.19/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/mitchellh/mapstructure v1.3.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
Expand Down

0 comments on commit 31aed86

Please sign in to comment.