Skip to content

Commit de12343

Browse files
authored
chore: upgrade go version to 1.23 (#48)
* chore: update Go version to 1.23 in go.mod, lint.yml, README.md, and test.yml * chore: update Go version constraint to 1.23 in renovate.json
1 parent f90a902 commit de12343

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: stable
19+
go-version: 1.23.x
2020
- name: golangci-lint
2121
uses: golangci/golangci-lint-action@v6

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: "go test"
1515
strategy:
1616
matrix:
17-
go-version: [ 1.22.x, 1.23.x, 1.24.x ]
17+
go-version: [ 1.23.x, 1.24.x ]
1818
platform: [ ubuntu-latest, windows-latest, macos-latest ]
1919
runs-on: ${{ matrix.platform }}
2020

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Gitlab Webhook Dispatcher 🚀
22

3-
![Supported Go Versions](https://img.shields.io/badge/Go-%3E%3D1.22.10-blue)
3+
![Supported Go Versions](https://img.shields.io/badge/Go-%3E%3D1.23-blue)
44
[![Package Version](https://badgen.net/github/release/flc1125/go-gitlab-webhook/stable)](https://github.com/flc1125/go-gitlab-webhook/releases)
55
[![GoDoc](https://pkg.go.dev/badge/github.com/flc1125/go-gitlab-webhook/v2)](https://pkg.go.dev/github.com/flc1125/go-gitlab-webhook/v2)
66
[![codecov](https://codecov.io/gh/flc1125/go-gitlab-webhook/graph/badge.svg?token=QPTHZ5L9GT)](https://codecov.io/gh/flc1125/go-gitlab-webhook)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/flc1125/go-gitlab-webhook/v2
22

3-
go 1.22.10
3+
go 1.23
44

55
require (
66
github.com/stretchr/testify v1.10.0

renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"separateMajorMinor": true,
88
"postUpdateOptions": ["gomodTidy"],
99
"constraints": {
10-
"go": "1.22.10"
10+
"go": "1.23"
1111
},
1212
"packageRules": [
1313
{

0 commit comments

Comments
 (0)