Support token revocation and introspection #599
Workflow file for this run
This file contains hidden or 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: "Backwards compatibility check" | |
| on: | |
| pull_request: | |
| jobs: | |
| bc-check: | |
| name: "Backwards compatibility check" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| with: | |
| fetch-depth: 0 | |
| - name: Fix git safe.directory in container | |
| run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig | |
| - name: "Backwards Compatibility Check" | |
| uses: docker://nyholm/roave-bc-check-ga | |
| with: | |
| args: --from=${{ github.event.pull_request.base.sha }} |