to reduce warnings on CI. Based on the changelogs/migrations guides I found they should work as before.
22 lines
397 B
YAML
22 lines
397 B
YAML
name: Actionlint
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/**'
|
|
pull_request:
|
|
paths:
|
|
- '.github/**'
|
|
merge_group:
|
|
|
|
jobs:
|
|
actionlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: actionlint
|
|
uses: raven-actions/actionlint@v1
|
|
with:
|
|
pyflakes: false # we do not use python scripts
|