File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1515 - uses : actions/checkout@v3
1616 - uses : actions/setup-go@v3
1717 with :
18- go-version : 1.19
18+ go-version : ' 1.20 '
1919 - name : golangci-lint
2020 uses : golangci/golangci-lint-action@v3
2121 with :
2929 - uses : actions/checkout@v3
3030 - uses : actions/setup-go@v3
3131 with :
32- go-version : 1.19
32+ go-version : ' 1.20 '
3333 - name : Run Go tests
3434 run : |
3535 cd backend
4141 - uses : actions/checkout@v3
4242 - uses : actions/setup-go@v3
4343 with :
44- go-version : 1.19
44+ go-version : ' 1.20 '
4545 - uses : actions/setup-node@v3
4646 with :
4747 node-version : 16
8383 - uses : actions/checkout@v3
8484 - uses : actions/setup-node@v3
8585 with :
86- node-version : 16
86+ node-version : 19
8787 - name : Run tests
8888 run : |
8989 cd frontend
9696 - uses : actions/checkout@v3
9797 - uses : actions/setup-go@v3
9898 with :
99- go-version : 1.19
99+ go-version : ' 1.20 '
100100 - name : golangci-lint
101101 uses : golangci/golangci-lint-action@v3
102102 with :
@@ -109,7 +109,7 @@ jobs:
109109 - uses : actions/checkout@v3
110110 - uses : actions/setup-go@v3
111111 with :
112- go-version : 1.19
112+ go-version : ' 1.20 '
113113 - name : Run Go tests
114114 run : |
115115 cd sdk
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 strategy :
1212 matrix :
13- go_version : [ '1.19 ' ]
13+ go_version : [ '1.20 ' ]
1414 steps :
1515 - uses : actions/checkout@v2
1616 - uses : actions/setup-go@v2
@@ -137,7 +137,7 @@ jobs:
137137 - uses : actions/checkout@v2
138138 - uses : actions/setup-go@v2
139139 with :
140- go-version : 1.19
140+ go-version : ' 1.20 '
141141
142142 - name : Create release
143143 run : |
@@ -153,4 +153,4 @@ jobs:
153153 upload_url : ${{ needs.release.outputs.upload_url }}
154154 asset_path : ./backend/authz-${{ matrix.goos }}-${{ matrix.goarch }}
155155 asset_name : authz-${{ matrix.goos }}-${{ matrix.goarch }}
156- asset_content_type : application/octet-stream
156+ asset_content_type : application/octet-stream
Original file line number Diff line number Diff line change 1- FROM golang:1.19 -alpine3.17 as backend-builder
1+ FROM golang:1.20 -alpine3.17 as backend-builder
22
33WORKDIR /project
44
@@ -16,7 +16,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
1616 --mount=type=cache,target=/root/.cache/go-build \
1717 CGO_ENABLED=1 go build -mod vendor -ldflags "-s -w" -o authz ./cmd/
1818
19- FROM node:19.4 -alpine as frontend-builder
19+ FROM node:19.6 -alpine as frontend-builder
2020
2121ARG REACT_APP_API_BASE_URI=http://localhost:8080/v1
2222ARG REACT_APP_DEMO_ENABLED=false
Original file line number Diff line number Diff line change 1- FROM golang:1.19 -alpine3.17 as builder
1+ FROM golang:1.20 -alpine3.17 as builder
22
33WORKDIR /project
44
Original file line number Diff line number Diff line change 11module github.com/eko/authz/backend
22
3- go 1.19
3+ go 1.20
44
55require (
66 github.com/coreos/go-oidc/v3 v3.5.0
Original file line number Diff line number Diff line change 1- FROM node:19.4 -alpine as builder
1+ FROM node:19.6 -alpine as builder
22
33WORKDIR /app
44
You can’t perform that action at this time.
0 commit comments