Skip to content

Commit

Permalink
NETOBSERV-743: update build image & CI tests to Go 1.18 (netobserv#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Macias authored Dec 13, 2022
1 parent 384e46d commit ce9e7d2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17']
go: ['1.18']
steps:
- name: install make
run: sudo apt-get install make
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_image_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17']
go: ['1.18']
steps:
- name: install make
run: sudo apt-get install make
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17']
go: ['1.18']
steps:
- name: checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ linters:
- varcheck
linters-settings:
stylecheck:
go: "1.17"
go: "1.18"
gocritic:
enabled-checks:
- hugeParam
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY --chown=default web web
COPY mocks mocks
RUN make fmt-frontend just-build-frontend

FROM registry.access.redhat.com/ubi8/go-toolset:1.17 as go-builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.18 as go-builder

WORKDIR /opt/app-root

Expand Down

0 comments on commit ce9e7d2

Please sign in to comment.