Skip to content

Commit 8418b97

Browse files
author
Mario Macias
authored
NETOBSERV-743: update build image & CI tests to Go 1.18 (#71)
1 parent bfba2a1 commit 8418b97

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go: ['1.17']
15+
go: ['1.18']
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up Go
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: 1.17
21+
go-version: 1.18
2222
- name: Install make
2323
run: sudo apt -y install make
2424
- name: Run verification and tests

.github/workflows/pull_request_e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
go: ['1.17']
16+
go: ['1.18']
1717
steps:
1818
- name: install make
1919
run: sudo apt-get install make

.github/workflows/push_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-20.04
1818
strategy:
1919
matrix:
20-
go: ['1.17']
20+
go: ['1.18']
2121
steps:
2222
- name: install make
2323
run: sudo apt-get install make

.github/workflows/push_image_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-20.04
1717
strategy:
1818
matrix:
19-
go: ['1.17']
19+
go: ['1.18']
2020
steps:
2121
- name: install make
2222
run: sudo apt-get install make

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-20.04
1717
strategy:
1818
matrix:
19-
go: ['1.17']
19+
go: ['1.18']
2020
steps:
2121
- name: checkout
2222
uses: actions/checkout@v2

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ linters:
2121
- varcheck
2222
linters-settings:
2323
stylecheck:
24-
go: "1.17"
24+
go: "1.18"
2525
gocritic:
2626
enabled-checks:
2727
- hugeParam

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Build the manager binary
2-
FROM registry.access.redhat.com/ubi8/go-toolset:1.17.12 as builder
2+
FROM registry.access.redhat.com/ubi8/go-toolset:1.18.4 as builder
33

44
ARG SW_VERSION="unknown"
5-
ARG GOVERSION="1.17.8"
5+
ARG GOVERSION="1.18.4"
66

77
WORKDIR /opt/app-root
88

examples/performance/Dockerfile_packet_counter

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# this file has to be built from the project root directory
22

3-
FROM golang:1.17 as builder
3+
FROM golang:1.18 as builder
44

55
WORKDIR /app
66

scripts/generators.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM fedora:35
22

3-
ARG GOVERSION="1.17.12"
3+
ARG GOVERSION="1.18.4"
44
ARG PROTOCVERSION="3.19.4"
55

66
# Installs dependencies that are required to compile eBPF programs

0 commit comments

Comments
 (0)