Upgrade JS and Go deps versions (#517)

This commit is contained in:
Thomas Miceli
2025-10-07 16:59:37 +02:00
committed by GitHub
parent f0a596aed0
commit f653179cbf
81 changed files with 2487 additions and 6227 deletions

View File

@@ -19,16 +19,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.23
- name: Set up Go 1.25
uses: actions/setup-go@v4
with:
go-version: "1.23"
go-version: "1.25"
- name: Lint
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v8
with:
version: v1.60
args: --out-format=colored-line-number --timeout=20m
version: v2.5
args: --timeout=20m --disable=errcheck
- name: Format
run: make fmt check_changes
@@ -40,10 +40,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.23
- name: Set up Go 1.25
uses: actions/setup-go@v4
with:
go-version: "1.23"
go-version: "1.25"
- name: Check Go modules
run: make go_mod check_changes
@@ -57,7 +57,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
go: ["1.23"]
go: ["1.25"]
database: [postgres, mysql]
include:
- database: postgres
@@ -101,7 +101,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
go: ["1.23"]
go: ["1.25"]
database: ["sqlite"]
runs-on: ${{ matrix.os }}
steps:
@@ -122,13 +122,13 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
go: ["1.23"]
go: ["1.25"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.23
- name: Set up Go 1.25
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}