Skip to content

Remove go 1.16 and 1.17. Add Go 1.22 and 1.23 into dynamic tracer test matrix #2938

Remove go 1.16 and 1.17. Add Go 1.22 and 1.23 into dynamic tracer test matrix

Remove go 1.16 and 1.17. Add Go 1.22 and 1.23 into dynamic tracer test matrix #2938

---
name: 'filename-linter'
on:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true
jobs:
check-files-changed:
permissions:
contents: read
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
private:
- '**/*private*/**'
- '**/*private*'
- name: Fail on private
if: ${{ steps.changes.outputs.private == 'true' }}
run: echo "This repo disallows dirnames or filenames with 'private' in it." && exit 1