Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 16 additions & 55 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,68 +1,29 @@
---
version: 2

registries:
ghcr:
type: "docker-registry"
url: "ghcr.io"
username: "PAT"
password: "${{secrets.CONTAINER_BUILDER_TOKEN}}"
rubygems-github-packages:
type: "rubygems-server"
url: "rubygems.pkg.github.com/github"
token: "${{secrets.CONTAINER_BUILDER_TOKEN}}"

updates:
- package-ecosystem: "bundler"
vendor: true
- package-ecosystem: gomod
directory: "/"
registries: ["rubygems-github-packages"]
groups:
ruby-gems-production:
dependency-type: "production"
patterns: ["*"]
dev-ruby-development:
dependency-type: "development"
patterns: ["*"]
schedule:
interval: "weekly"
reviewers: ["github/sae-reviewers"]

- package-ecosystem: "docker"
directory: "/"
registries: ["ghcr"]
interval: monthly
groups:
container-images:
patterns: ["*"]
schedule:
interval: "weekly"
reviewers: ["github/sae-reviewers"]
go-dependencies:
patterns:
- "*"

- package-ecosystem: "github-actions"
- package-ecosystem: docker
directory: "/"
groups:
github-actions:
patterns: ["*"]
ignore:
- dependency-name: "github/internal-actions"
schedule:
interval: "weekly"
reviewers: ["github/sae-reviewers"]

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
interval: monthly
groups:
python-packages:
patterns: ["*"]
reviewers: ["github/sae-reviewers"]
docker-dependencies:
patterns:
- "*"

- package-ecosystem: "gomod"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: "weekly"
groups:
go-packages:
patterns: ["*"]
reviewers: ["github/sae-reviewers"]
github-actions:
patterns:
- "*"
schedule:
interval: monthly
2 changes: 1 addition & 1 deletion actionsoidc/actions-oidc.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"net/url"
"os"

"github.com/golang-jwt/jwt"
"github.com/golang-jwt/jwt/v5"
)

type ActionsOIDCClient struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/github/actions-oidc-debugger

go 1.18

require github.com/golang-jwt/jwt v3.2.2+incompatible
require github.com/golang-jwt/jwt/v5 v5.2.2
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
github.com/golang-jwt/jwt/v5 v5.2.2 h1:Rl4B7itRWVtYIHFrSNd7vhTiz9UpLdi6gZhZ3wEeDy8=
github.com/golang-jwt/jwt/v5 v5.2.2/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk=
22 changes: 0 additions & 22 deletions vendor/github.com/golang-jwt/jwt/MIGRATION_GUIDE.md

This file was deleted.

113 changes: 0 additions & 113 deletions vendor/github.com/golang-jwt/jwt/README.md

This file was deleted.

146 changes: 0 additions & 146 deletions vendor/github.com/golang-jwt/jwt/claims.go

This file was deleted.

Loading