Skip to content

Commit

Permalink
fix: mitigate CVE-2022-27664 (#365)
Browse files Browse the repository at this point in the history
fix: update release process to build chamber on go version 1.19.4 to mitigate CVE-2022-27664.
  • Loading branch information
rikez committed Dec 14, 2022
1 parent 0fda232 commit f64f40e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
install-go-modules:
strategy:
matrix:
go: ['1.18.x', '1.17.x', '1.16.x', '1.15.x']
go: ['1.19.x', '1.18.x', '1.17.x', '1.16.x', '1.15.x']

runs-on: ubuntu-latest

Expand All @@ -29,7 +29,7 @@ jobs:
test:
strategy:
matrix:
go: ['1.18.x', '1.17.x', '1.16.x']
go: ['1.19.x', '1.18.x', '1.17.x', '1.16.x']
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
dist:
strategy:
matrix:
go: ['1.18.x', '1.17.x', '1.16.x']
go: ['1.19.x', '1.18.x', '1.17.x', '1.16.x']
runs-on: ubuntu-latest
needs: test

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
dist:
strategy:
matrix:
go: ['1.16.x']
go: ['1.19.x']
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
publish-dockerhub:
strategy:
matrix:
go: ['1.16.x']
go: ['1.19.x']
runs-on: ubuntu-latest
needs: dist

Expand Down

0 comments on commit f64f40e

Please sign in to comment.