1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-26 18:21:01 +00:00

ci: update Go version to 1.25 in workflows and Dockerfile

This commit is contained in:
Frédéric Guillot 2025-08-16 11:31:23 -07:00
parent ce6cadc176
commit 88d9682f5f
5 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@ jobs:
- name: Set up Golang - name: Set up Golang
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: "1.24.x" go-version: "1.25.x"
check-latest: true check-latest: true
- name: Compile binaries - name: Compile binaries
env: env:

View file

@ -37,7 +37,7 @@ jobs:
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: "1.24.x" go-version: "1.25.x"
- name: Initialize CodeQL - name: Initialize CodeQL
uses: github/codeql-action/init@v3 uses: github/codeql-action/init@v3

View file

@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5 - uses: actions/checkout@v5
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: "1.24.x" go-version: "1.25.x"
- uses: golangci/golangci-lint-action@v8 - uses: golangci/golangci-lint-action@v8
with: with:
args: > args: >

View file

@ -15,7 +15,7 @@ jobs:
max-parallel: 4 max-parallel: 4
matrix: matrix:
os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, windows-latest, macOS-latest]
go-version: ["1.24.x"] go-version: ["1.25.x"]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v5
@ -49,7 +49,7 @@ jobs:
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: "1.24.x" go-version: "1.25.x"
- name: Install Postgres client - name: Install Postgres client
run: sudo apt update && sudo apt install -y postgresql-client run: sudo apt update && sudo apt install -y postgresql-client
- name: Run integration tests - name: Run integration tests

View file

@ -1,4 +1,4 @@
FROM docker.io/golang:1.24-bookworm AS build FROM docker.io/golang:1.25-bookworm AS build
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive