Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Liz MacLean
05cd2e1ac7 Update golangci-lint 2026-04-13 12:23:25 -04:00
Liz MacLean
548a5d495c Fix build 2026-04-13 12:19:27 -04:00
dependabot[bot]
917a5bc40c
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] <support@github.com>
2026-04-13 15:43:33 +00:00
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

4
go.mod
View file

@ -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 (