diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59200f0..7a106de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.0.2 with: - go-version: "1.25.6" # update together with dev.dockerfile + go-version: "1.25.7" # update together with dev.dockerfile - name: Debug with tmate SSH if enabled if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_ssh }} uses: mxschmitt/action-tmate@c0afd6f790e3a5564914980036ebf83216678101 # v3.23 @@ -43,7 +43,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.0.2 with: - go-version: "1.25.6" # update together with dev.dockerfile + go-version: "1.25.7" # update together with dev.dockerfile - run: make test-latest-deps test22: @@ -62,7 +62,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.0.2 with: - go-version: "1.25.6" # update together with dev.dockerfile + go-version: "1.25.7" # update together with dev.dockerfile - uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 with: version: "v2.8.0" # update together with dev.dockerfile @@ -73,7 +73,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.0.2 with: - go-version: "1.25.6" # update together with dev.dockerfile + go-version: "1.25.7" # update together with dev.dockerfile - run: make apply-latest-deps - uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0 with: @@ -86,5 +86,5 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.0.2 with: - go-version: "1.25.6" # update together with dev.dockerfile + go-version: "1.25.7" # update together with dev.dockerfile - run: make check-tidy diff --git a/dev.dockerfile b/dev.dockerfile index c56dcdb..51716a9 100644 --- a/dev.dockerfile +++ b/dev.dockerfile @@ -1,5 +1,5 @@ # update together with .github/workflows/ci.yml -FROM golang:1.25.6 AS go +FROM golang:1.25.7 AS go # update together with .github/workflows/ci.yml FROM golangci/golangci-lint:v2.8.0 AS linter