Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
fail-fast: true
matrix:
language: [ 'go' ]
os: [ 'ubuntu-22.04' ]
go-version: [1.22.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dockerfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
[
"./build/docker/go-tools/Dockerfile",
]
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
name: Lint ${{ matrix.dockerfile }}
steps:
- name: Checkout
Expand All @@ -48,7 +48,7 @@ jobs:
[
"go-tools",
]
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-24.04"
name: Build ${{ matrix.target }}
steps:
- name: Checkout
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
fail-fast: false
max-parallel: 2
matrix:
os: [ "ubuntu-22.04" ]
go-version: [1.22.x]
os: [ "ubuntu-24.04" ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Build
steps:
Expand Down Expand Up @@ -86,8 +86,8 @@ jobs:
fail-fast: false
max-parallel: 2
matrix:
os: [ "ubuntu-22.04" ]
go-version: [1.22.x]
os: [ "ubuntu-24.04" ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Run Tests
steps:
Expand Down Expand Up @@ -141,8 +141,8 @@ jobs:
fail-fast: false
max-parallel: 2
matrix:
os: [ "ubuntu-22.04" ]
go-version: [1.22.x]
os: [ "ubuntu-24.04" ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Run linters
steps:
Expand Down Expand Up @@ -201,8 +201,8 @@ jobs:
fail-fast: true
max-parallel: 1
matrix:
os: [ "ubuntu-22.04" ]
go-version: [1.22.x]
os: [ "ubuntu-24.04" ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Quality reports
steps:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: false
max-parallel: 2
matrix:
os: [ 'ubuntu-22.04' ]
go-version: [1.22.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Build
steps:
Expand Down Expand Up @@ -67,8 +67,8 @@ jobs:
fail-fast: false
max-parallel: 2
matrix:
os: [ 'ubuntu-22.04' ]
go-version: [1.22.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Regression tests
steps:
Expand Down Expand Up @@ -124,8 +124,8 @@ jobs:
fail-fast: false
max-parallel: 1
matrix:
os: [ 'ubuntu-22.04' ]
go-version: [1.22.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Lint
steps:
Expand Down Expand Up @@ -185,8 +185,8 @@ jobs:
fail-fast: false
max-parallel: 1
matrix:
os: [ 'ubuntu-22.04' ]
go-version: [1.22.x]
os: [ 'ubuntu-24.04' ]
go-version: [1.24.x]
runs-on: ${{ matrix.os }}
name: Release
steps:
Expand Down
10 changes: 7 additions & 3 deletions .golangci.pipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ linters:
- gofmt
- revive
- goimports
- unused
- gosimple

linters-settings:
errcheck:
Expand Down Expand Up @@ -97,16 +99,16 @@ issues:
run:
issues-exit-code: 1
tests: true
skip-dirs:
exclude-dirs:
- vendor/
skip-files:
exclude-files:
- \.pb\.go$

# output configuration options
output:
# colored-line-number|line-number|json|tab|checkstyle|code-climate|junit-xml|github-actions
# default is "colored-line-number"
format: github-actions
formats: github-actions

# print lines of code with issue, default is true
print-issued-lines: true
Expand All @@ -122,3 +124,5 @@ output:

# sorts results by: filepath, line and column
sort-results: true


Loading
Loading