diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b444b01..eda558d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,7 +16,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: 1.22 + go-version: 1.25 - name: Build run: go build -v ./... diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5328055..3ff059e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: name: Set up Go uses: actions/setup-go@v4 with: - go-version: 1.22 + go-version: 1.25 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e2beb1..2f49be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.2] - 2025-11-01 + +### Dependencies + +- Module go version changed to 1.25 + ## [1.3.1] - 2025-09-01 ### Dependencies diff --git a/Containerfile b/Containerfile index 0596dd1..651c8b7 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,5 @@ # Stage 1: Build -FROM docker.io/golang:1.23.3-alpine AS builder +FROM docker.io/golang:1.25.3-alpine AS builder WORKDIR /app COPY go.mod go.sum ./ RUN go mod download diff --git a/go.mod b/go.mod index 5e81045..acc0910 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/dubyte/dir2opds -go 1.22.0 +go 1.25.3 require ( github.com/lann/builder v0.0.0-20150808151131-f22ce00fd939