From a3855492c35fc980442ccae7c975008b11a7603d Mon Sep 17 00:00:00 2001 From: redhat-renovate-bot Date: Mon, 25 Nov 2024 23:01:19 +0800 Subject: [PATCH] Update all dependencies Signed-off-by: redhat-renovate-bot --- .pre-commit-config.yaml | 2 +- Dockerfile | 4 ++-- Dockerfile.goreleaser | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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