Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Update Go version to 1.24.7 #46

Update Go version to 1.24.7

Update Go version to 1.24.7 #46

Workflow file for this run

---
name: Test OIDC Debugger
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v5
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: run oidc-debug.go
run: go run cmd/oidc-debug.go -audience "https://github.com/github"
- name: docker build
run: docker build -t actions-oidc-debugger .