Skip to content

Commit 5752294

Browse files
Revert "Update to go 1.19"
This reverts commit 7a5a75f. golangci-lint needs to be build with go 1.19 see golangci/golangci-lint-action#442 (comment)
1 parent 7a5a75f commit 5752294

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/renovate.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"SuperSandro2000"
1010
],
1111
"constraints": {
12-
"go": "1.19"
12+
"go": "1.18"
1313
},
1414
"postUpdateOptions": [
1515
"gomodTidy",
@@ -20,7 +20,7 @@
2020
"matchPackageNames": [
2121
"golang"
2222
],
23-
"allowedVersions": "1.19.x"
23+
"allowedVersions": "1.18.x"
2424
},
2525
{
2626
"matchPackagePrefixes": [

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Go
3030
uses: actions/setup-go@v3
3131
with:
32-
go-version: "1.19"
32+
go-version: "1.18"
3333
- name: Make build
3434
run: make build-all
3535
lint:
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Go
4242
uses: actions/setup-go@v3
4343
with:
44-
go-version: "1.19"
44+
go-version: "1.18"
4545
- name: Run golangci-lint
4646
uses: golangci/golangci-lint-action@v3
4747
with:
@@ -57,7 +57,7 @@ jobs:
5757
- name: Set up Go
5858
uses: actions/setup-go@v3
5959
with:
60-
go-version: "1.19"
60+
go-version: "1.18"
6161
- name: Run tests and generate coverage report
6262
run: make build/cover.out
6363
- name: Upload coverage report to Coveralls

.github/workflows/license.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Go
2828
uses: actions/setup-go@v3
2929
with:
30-
go-version: "1.19"
30+
go-version: "1.18"
3131
- name: Check if source code files have license header
3232
run: |
3333
shopt -s globstar

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/sapcc/go-makefile-maker
22

3-
go 1.19
3+
go 1.18
44

55
require (
66
github.com/sapcc/go-bits v0.0.0-20220801132244-1778c461b6c3
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# renovate: datasource=docker depName=alpine versioning=docker
22
ARG ALPINE_VERSION=3.16
33
# renovate: datasource=docker depName=golang versioning=docker
4-
ARG GOLANG_VERSION=1.19.0-alpine
4+
ARG GOLANG_VERSION=1.18.4-alpine

0 commit comments

Comments
 (0)