From 917a5bc40c9e4e53189cebfc60455d3657410263 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 15:43:33 +0000 Subject: [PATCH 1/3] Bump golang.org/x/oauth2 from 0.33.0 to 0.36.0 Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.33.0 to 0.36.0. - [Commits](https://github.com/golang/oauth2/compare/v0.33.0...v0.36.0) --- updated-dependencies: - dependency-name: golang.org/x/oauth2 dependency-version: 0.36.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- go.mod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 2f1fd03..7923d5d 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,10 @@ module github.com/trstringer/manual-approval -go 1.24.0 +go 1.25.0 require ( github.com/google/go-github/v43 v43.0.0 - golang.org/x/oauth2 v0.33.0 + golang.org/x/oauth2 v0.36.0 ) require ( From 548a5d495cb5567330018ff0a910464db1d82366 Mon Sep 17 00:00:00 2001 From: Liz MacLean <18120837+lizziemac@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:19:27 -0400 Subject: [PATCH 2/3] Fix build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 002be9d..f63013a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24 AS builder +FROM golang:1.25 AS builder COPY . /var/app WORKDIR /var/app RUN go mod tidy From 05cd2e1ac7eae8e3ca46443136b6f595cb770068 Mon Sep 17 00:00:00 2001 From: Liz MacLean <18120837+lizziemac@users.noreply.github.com> Date: Mon, 13 Apr 2026 12:23:25 -0400 Subject: [PATCH 3/3] Update golangci-lint --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 420c847..1c7f1ce 100644 --- a/Makefile +++ b/Makefile @@ -30,4 +30,4 @@ test: .PHONY: lint lint: - docker run --rm -v $$(pwd):/app -w /app golangci/golangci-lint:v2.1.6 golangci-lint run -v + docker run --rm -v $$(pwd):/app -w /app golangci/golangci-lint:v2.11.4 golangci-lint run -v