diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c8e2a1e..b569e96 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ --- repos: - repo: https://github.com/golangci/golangci-lint - rev: v1.61.0 + rev: v1.62.2 hooks: - id: golangci-lint diff --git a/Dockerfile b/Dockerfile index a956032..9b2754c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ # Build stage -FROM golang:1.22 AS builder +FROM golang:1.23 AS builder COPY . /build WORKDIR /build RUN CGO_ENABLED=0 go build ./act.go # Main stage -FROM python:3.9-slim-bullseye +FROM python:3.13-slim-bullseye RUN python -m ensurepip RUN python -m pip install --user --upgrade flake8 diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index b966aca..d87238b 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,4 +1,4 @@ -FROM python:3.9-slim-bullseye +FROM python:3.13-slim-bullseye RUN python -m pip install --user --upgrade flake8