From c7a5c7efee2b2bede89ec90bafd1af61c39519ff Mon Sep 17 00:00:00 2001 From: Christopher Campo Date: Tue, 22 Jul 2025 16:17:24 -0400 Subject: [PATCH] build: bump go version to 1.23.11 --- .github/workflows/main.yaml | 6 +++--- go.mod | 2 +- tools/go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ee01149a..e5e48a5d 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.23.0 + go-version: 1.23.11 - run: make lint-backend lint: runs-on: ubuntu-latest @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: 1.23.0 + go-version: 1.23.11 - run: make test-backend test: runs-on: ubuntu-latest @@ -76,7 +76,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-go@v5 with: - go-version: 1.23.0 + go-version: 1.23.11 - uses: pnpm/action-setup@v4 with: package_json_file: "frontend/package.json" diff --git a/go.mod b/go.mod index 37f5d6da..f12518d1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/filebrowser/filebrowser/v2 -go 1.23.0 +go 1.23.11 require ( github.com/asdine/storm/v3 v3.2.1 diff --git a/tools/go.mod b/tools/go.mod index 492fb904..80abe388 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -1,6 +1,6 @@ module github.com/filebrowser/filebrowser/v2/tools -go 1.23.0 +go 1.23.11 require ( github.com/golangci/golangci-lint/v2 v2.1.6