Skip to content

Commit

Permalink
upgrade golang to 1.22.6, alpine to 3.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ntap-jbolle committed Aug 9, 2024
1 parent fd97d7a commit ecff4f3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22.5
go-version: 1.22.6
cache: true
cache-dependency-path: |
**/go.sum
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<!-- 7.5.33 START -->

# 7.5.33 (2024-08-09)

- New release
- Upgrade Go to 1.22.6
- Upgrade Alpine to 3.20(.2)

<!-- 7.5.33 END -->

<!-- 7.5.32 START -->

# 7.5.32 (2024-07-04)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV NODE_ENV=production \
RUN yarn build

# Backend builder stage
FROM docker.io/library/golang:1.22.5-alpine3.20 as go-builder
FROM docker.io/library/golang:1.22.6-alpine3.20 as go-builder

RUN apk add --no-cache gcc g++

Expand All @@ -46,7 +46,7 @@ RUN go run build.go build && \
mv /go/src/github.com/credativ/plutono/bin/linux-$(go env GOARCH)/plutono-cli /go/src/github.com/credativ/plutono/bin/

# Final stage
FROM docker.io/library/alpine:3.20.1 as final
FROM docker.io/library/alpine:3.20.2 as final

ARG PL_UID="472"
ARG PL_GID="0"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ require (
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
github.com/centrifugal/centrifuge v0.13.0
github.com/cortexproject/cortex v1.8.1
github.com/credativ/vali v0.0.0-20240704073348-db23bb978d66
github.com/credativ/vali v0.0.0-20240809071551-5cab200ebcfc
github.com/crewjam/saml v0.4.14
github.com/davecgh/go-spew v1.1.1
github.com/denisenkom/go-mssqldb v0.0.0-20200910202707-1e08a3fab204
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsr
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/credativ/vali v0.0.0-20240704073348-db23bb978d66 h1:IcJ8YA+er5ItWFVVZqZ11QTPD7UGiyscQMa1tz509Vs=
github.com/credativ/vali v0.0.0-20240704073348-db23bb978d66/go.mod h1:N2kBFZ91qaBBif79xrLtVNCUzMzqH5BEl+kLuaLU9AA=
github.com/credativ/vali v0.0.0-20240809071551-5cab200ebcfc h1:o1UdnosSmIhIT/rHhsFQ8T+Xm1GyV7dbJsk4njt8lL0=
github.com/credativ/vali v0.0.0-20240809071551-5cab200ebcfc/go.mod h1:N2kBFZ91qaBBif79xrLtVNCUzMzqH5BEl+kLuaLU9AA=
github.com/crewjam/httperr v0.2.0/go.mod h1:Jlz+Sg/XqBQhyMjdDiC+GNNRzZTD7x39Gu3pglZ5oH4=
github.com/crewjam/saml v0.4.14 h1:g9FBNx62osKusnFzs3QTN5L9CVA/Egfgm+stJShzw/c=
github.com/crewjam/saml v0.4.14/go.mod h1:UVSZCf18jJkk6GpWNVqcyQJMD5HsRugBPf4I1nl2mME=
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"license": "Apache-2.0",
"private": true,
"name": "plutono",
"version": "7.5.32",
"version": "7.5.33",
"repository": "github:credativ/plutono",
"scripts": {
"api-tests": "jest --notify --watch --config=devenv/e2e-api-tests/jest.js",
Expand Down

0 comments on commit ecff4f3

Please sign in to comment.