From 08b69e0774a928e9e7219e6779a461d7b4a60f16 Mon Sep 17 00:00:00 2001 From: jetzlstorfer Date: Thu, 2 Sep 2021 10:36:50 +0200 Subject: [PATCH 1/3] add Keptn 0.8.7 to readme Signed-off-by: jetzlstorfer --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index abe8697..1e356d9 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Please always double-check the version of Keptn you are using compared to the ve | 0.8.0 | keptncontrib/prometheus-service:0.4.0 | | 0.8.1, 0.8.2 | keptncontrib/prometheus-service:0.5.0 | | 0.8.1 - 0.8.3 | keptncontrib/prometheus-service:0.6.0 | -| 0.8.4 | keptncontrib/prometheus-service:0.6.1 | +| 0.8.4 - 0.8.7 | keptncontrib/prometheus-service:0.6.1 | ## Setup Prometheus Monitoring From 9ece658e3b12a51af6309d03bc4a1bd324ac9c4c Mon Sep 17 00:00:00 2001 From: Giovanni Liva Date: Fri, 3 Sep 2021 09:13:26 +0200 Subject: [PATCH 2/3] Update Dockerfile to use GO 1.17 Signed-off-by: Giovanni Liva --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2522aa1..9854caa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Use the offical Golang image to create a build artifact. # This is based on Debian and sets the GOPATH to /go. # https://hub.docker.com/_/golang -FROM golang:1.13.7-alpine as builder +FROM golang:1.17-alpine3.13 as builder RUN apk add --no-cache gcc libc-dev git ARG version=develop From 57910b7e450d0b28bd22c4aa022e6915f35b1132 Mon Sep 17 00:00:00 2001 From: Giovanni Liva Date: Fri, 3 Sep 2021 09:34:19 +0200 Subject: [PATCH 3/3] Update reviewdog to use GO 1.17 Signed-off-by: Giovanni Liva --- .github/workflows/reviewdog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index b14cda2..87480ee 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -8,7 +8,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.13 + go-version: 1.17 id: go - name: Check out code. uses: actions/checkout@v1