Move linkspector config file out of workflow dir (#2565)

This commit is contained in:
Romain Malmain 2024-09-26 18:37:38 +02:00 committed by GitHub
parent 42b3199807
commit 79cd1afec0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ jobs:
# uses: umbrelladocs/action-linkspector@v1
# with:
# fail_on_error: 'true'
# config_file: '.github/workflows/.linkspector.yml'
# config_file: '.github/.linkspector.yml'
fuzzers-preflight:
runs-on: ubuntu-24.04

View File

@ -12,6 +12,6 @@ if ! command -v linkspector > /dev/null; then
exit 1
fi
linkspector check -c "${LIBAFL_DIR}/.github/workflows/.linkspector.yml" || exit 1
linkspector check -c "${LIBAFL_DIR}/.github/.linkspector.yml" || exit 1
echo "[*] Done :)"