Skip to content

Commit 36a60c3

Browse files
authored
Merge pull request #26 from github/updates
Update Go Modules
2 parents 0705a46 + 33e50ec commit 36a60c3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1904
-937
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,29 @@
1-
---
21
version: 2
32

4-
registries:
5-
ghcr:
6-
type: "docker-registry"
7-
url: "ghcr.io"
8-
username: "PAT"
9-
password: "${{secrets.CONTAINER_BUILDER_TOKEN}}"
10-
rubygems-github-packages:
11-
type: "rubygems-server"
12-
url: "rubygems.pkg.github.com/github"
13-
token: "${{secrets.CONTAINER_BUILDER_TOKEN}}"
14-
153
updates:
16-
- package-ecosystem: "bundler"
17-
vendor: true
4+
- package-ecosystem: gomod
185
directory: "/"
19-
registries: ["rubygems-github-packages"]
20-
groups:
21-
ruby-gems-production:
22-
dependency-type: "production"
23-
patterns: ["*"]
24-
dev-ruby-development:
25-
dependency-type: "development"
26-
patterns: ["*"]
276
schedule:
28-
interval: "weekly"
29-
reviewers: ["github/sae-reviewers"]
30-
31-
- package-ecosystem: "docker"
32-
directory: "/"
33-
registries: ["ghcr"]
7+
interval: monthly
348
groups:
35-
container-images:
36-
patterns: ["*"]
37-
schedule:
38-
interval: "weekly"
39-
reviewers: ["github/sae-reviewers"]
9+
go-dependencies:
10+
patterns:
11+
- "*"
4012

41-
- package-ecosystem: "github-actions"
13+
- package-ecosystem: docker
4214
directory: "/"
43-
groups:
44-
github-actions:
45-
patterns: ["*"]
46-
ignore:
47-
- dependency-name: "github/internal-actions"
4815
schedule:
49-
interval: "weekly"
50-
reviewers: ["github/sae-reviewers"]
51-
52-
- package-ecosystem: "pip"
53-
directory: "/"
54-
schedule:
55-
interval: "weekly"
16+
interval: monthly
5617
groups:
57-
python-packages:
58-
patterns: ["*"]
59-
reviewers: ["github/sae-reviewers"]
18+
docker-dependencies:
19+
patterns:
20+
- "*"
6021

61-
- package-ecosystem: "gomod"
22+
- package-ecosystem: github-actions
6223
directory: "/"
63-
schedule:
64-
interval: "weekly"
6524
groups:
66-
go-packages:
67-
patterns: ["*"]
68-
reviewers: ["github/sae-reviewers"]
25+
github-actions:
26+
patterns:
27+
- "*"
28+
schedule:
29+
interval: monthly

actionsoidc/actions-oidc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/url"
1010
"os"
1111

12-
"github.com/golang-jwt/jwt"
12+
"github.com/golang-jwt/jwt/v5"
1313
)
1414

1515
type ActionsOIDCClient struct {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module github.com/github/actions-oidc-debugger
22

33
go 1.18
44

5-
require github.com/golang-jwt/jwt v3.2.2+incompatible
5+
require github.com/golang-jwt/jwt/v5 v5.2.2

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
2-
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
1+
github.com/golang-jwt/jwt/v5 v5.2.2 h1:Rl4B7itRWVtYIHFrSNd7vhTiz9UpLdi6gZhZ3wEeDy8=
2+
github.com/golang-jwt/jwt/v5 v5.2.2/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk=

vendor/github.com/golang-jwt/jwt/MIGRATION_GUIDE.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

vendor/github.com/golang-jwt/jwt/README.md

Lines changed: 0 additions & 113 deletions
This file was deleted.

vendor/github.com/golang-jwt/jwt/claims.go

Lines changed: 0 additions & 146 deletions
This file was deleted.

0 commit comments

Comments
 (0)