mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
371 B
YAML
24 lines
371 B
YAML
name: Check overlay annotations
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- 'rc/*'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- 'rc/*'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Check overlay annotations
|
|
run: python config/add-overlay-annotations.py --check java
|
|
|