Skip to content

Commit 5f002fb

Browse files
authored
Merge pull request #53 from eko/upgrade-docker-images
Upgrade docker image versions
2 parents d6afd13 + ad4b80d commit 5f002fb

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/branches.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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:
@@ -29,7 +29,7 @@ jobs:
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
@@ -41,7 +41,7 @@ jobs:
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
@@ -83,7 +83,7 @@ jobs:
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
@@ -96,7 +96,7 @@ jobs:
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

.github/workflows/tag.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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

Dockerfile.standalone

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19-alpine3.17 as backend-builder
1+
FROM golang:1.20-alpine3.17 as backend-builder
22

33
WORKDIR /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

2121
ARG REACT_APP_API_BASE_URI=http://localhost:8080/v1
2222
ARG REACT_APP_DEMO_ENABLED=false

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19-alpine3.17 as builder
1+
FROM golang:1.20-alpine3.17 as builder
22

33
WORKDIR /project
44

backend/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/eko/authz/backend
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/coreos/go-oidc/v3 v3.5.0

frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:19.4-alpine as builder
1+
FROM node:19.6-alpine as builder
22

33
WORKDIR /app
44

0 commit comments

Comments
 (0)