build(deps): bump k8s.io/api from 0.27.4 to 0.28.0 #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Hello OIDC world' | |
on: | |
workflow_dispatch: | |
pull_request: | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
test-oidc-stuff: | |
runs-on: ubuntu-latest | |
name: Test retrieving OIDC tokens | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Print all envs | |
run: env | |
- name: The OIDC stuff | |
uses: ./actions/testoidc | |
id: 'hello-oidc' | |
with: | |
aud: 'bogus-aud' | |
- name: Get the output | |
run: | | |
echo "Got result ${{ steps.hello-oidc.outputs.result }}" | |
echo "Got tokenURL ${{ steps.hello-oidc.outputs.tokenURL }}" | |
- name: Print Git config | |
run: git config -l |