Skip to content

Commit 133b697

Browse files
committed
golangci-lint version updated
go version updated
1 parent 357ebce commit 133b697

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
pull_request:
88

99
env:
10-
GO_VERSION: '1.24'
11-
GO_LINT: 'v2.4.0'
10+
GO_VERSION: '1.25'
11+
GO_LINT: 'v2.8.0'
1212

1313
permissions:
1414
contents: read
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4
2929
- uses: actions/setup-go@v5
3030
with:
31-
go-version: stable
31+
go-version: ${{ env.GO_VERSION }}
3232
- name: golangci-lint
3333
uses: golangci/golangci-lint-action@v7
3434
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# Create a stage for building the application.
4-
ARG GO_VERSION=1.24
4+
ARG GO_VERSION=1.25
55
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine AS build
66
WORKDIR /usr/src/app
77

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ default: test
33
SHELL=/bin/bash
44

55
SD_DB?="postgresql://pg:pass@localhost:5432/status_dashboard?sslmode=disable"
6-
GOLANGCI_LINT_VERSION?="2.4.0"
6+
GOLANGCI_LINT_VERSION?="2.8.0"
77

88
test:
99
@echo running unit tests

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/stackmon/otc-status-dashboard
22

3-
go 1.24.2
3+
go 1.25.0
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.2

0 commit comments

Comments
 (0)