mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
e6ed1e1b72
* Change file extension to .yml for consistency * Move permissions for clarity and consistency * Change compat-checks action from @master to @v1 The action should be pinned to a stable ref such as @v1, consistent with the documentation and how other PD projects reference it. * Fix indentations and whitespaces in workflows
21 lines
389 B
YAML
21 lines
389 B
YAML
name: ♾️ Compatibility Checks
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
branches:
|
|
- dev
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
check:
|
|
if: github.actor == 'dependabot[bot]'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: projectdiscovery/actions/setup/go/compat-checks@v1
|
|
with:
|
|
go-version-file: go.mod
|