Skip to content

Commit

Permalink
🔒 Updated golang to 1.22.4 to address CVE-2024-24790 (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
STAR-173 authored Jun 23, 2024
1 parent 27b98af commit b7e7db4
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.22.4"
check-latest: true

- name: Install
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.22.4"
check-latest: true
- name: Build
run: go build -v ./...
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.22.4"
check-latest: true

- name: Install nilaway
Expand All @@ -95,7 +95,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.22.4"
check-latest: true

- name: Test
Expand All @@ -121,7 +121,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
go-version: "1.22.4"
check-latest: true

- name: Generate OpenAPI Schema
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22
go-version: 1.22.4

- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vuln.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.22.1'
go-version: '1.22.4'
check-latest: true

- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22
1.22.4
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/EinStack/glide

go 1.22.1
go 1.22.4

require (
github.com/aws/aws-sdk-go-v2 v1.24.1
Expand Down
2 changes: 1 addition & 1 deletion images/alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22-alpine as build
FROM golang:1.22.4-alpine as build

ARG VERSION
ARG COMMIT
Expand Down
2 changes: 1 addition & 1 deletion images/distroless.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22-alpine as build
FROM golang:1.22.4-alpine as build

ARG VERSION
ARG COMMIT
Expand Down
2 changes: 1 addition & 1 deletion images/redhat.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22-alpine as build
FROM golang:1.22.4-alpine as build

ARG VERSION
ARG COMMIT
Expand Down
2 changes: 1 addition & 1 deletion images/ubuntu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22-alpine as build
FROM golang:1.22.4-alpine as build

ARG VERSION
ARG COMMIT
Expand Down

0 comments on commit b7e7db4

Please sign in to comment.