chore(actions): bump actions/cache from 4 to 5 #373
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: Check Bibliography DOIs | |
| # Thin caller for the shared reusable workflow in d-morrison/gha. | |
| # The reusable workflow (and its bundled composite) reproduce the previous | |
| # standalone behavior: scan every *.bib in the repo and validate each DOI | |
| # resolves and matches its CrossRef metadata. | |
| # See https://github.com/d-morrison/gha for inputs and versioning. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| # Keep the job id (check-dois) matching the previous standalone workflow so | |
| # the status-check context name doesn't change. Re-declare the least-privilege | |
| # token the standalone job had; the reusable workflow only needs contents:read. | |
| check-dois: | |
| permissions: | |
| contents: read | |
| uses: d-morrison/gha/.github/workflows/check-bibliography-dois.yml@v1 |