prepare performance validation for upcoming postgres version 18 #4929
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: Lint GitHub Workflows | |
on: | |
push: | |
branches: | |
- main | |
- release | |
paths: | |
- '.github/workflows/*.ya?ml' | |
pull_request: | |
paths: | |
- '.github/workflows/*.ya?ml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
check-permissions: | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'run-no-ci') }} | |
uses: ./.github/workflows/check-permissions.yml | |
with: | |
github-event-name: ${{ github.event_name}} | |
actionlint: | |
needs: [ check-permissions ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: reviewdog/action-actionlint@a5524e1c19e62881d79c1f1b9b6f09f16356e281 # v1.65.2 | |
env: | |
# SC2046 - Quote this to prevent word splitting. - https://www.shellcheck.net/wiki/SC2046 | |
# SC2086 - Double quote to prevent globbing and word splitting. - https://www.shellcheck.net/wiki/SC2086 | |
SHELLCHECK_OPTS: --exclude=SC2046,SC2086 | |
with: | |
fail_level: error | |
filter_mode: nofilter | |
level: error | |
- name: Disallow 'ubuntu-latest' runners | |
run: | | |
PAT='^\s*runs-on:.*-latest' | |
if grep -ERq $PAT .github/workflows; then | |
grep -ERl $PAT .github/workflows |\ | |
while read -r f | |
do | |
l=$(grep -nE $PAT $f | awk -F: '{print $1}' | head -1) | |
echo "::error file=$f,line=$l::Please use 'ubuntu-22.04' instead of 'ubuntu-latest'" | |
done | |
exit 1 | |
fi |