Skip to content

chore(codeql): upgrade Java version to 25 (#137) #303

chore(codeql): upgrade Java version to 25 (#137)

chore(codeql): upgrade Java version to 25 (#137) #303

Workflow file for this run

---
name: CI
on:
pull_request: {}
push:
branches:
- main
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-filenames:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Validating .yaml file extension on all workflow files
run: |
invalid_files=$(find ./.github/workflows -type f ! -name "*.yaml")
if [ -n "$invalid_files" ]; then
echo "::error::The following files do NOT have the .yaml extension:"
echo "$invalid_files"
exit 1
fi