Skip to content

Commit b128c7c

Browse files
committed
Don't use local actions
1 parent 19e010e commit b128c7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/qhelp-pr-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ jobs:
1616
qhelp:
1717
runs-on: ubuntu-latest
1818
steps:
19+
- uses: github/codeql/.github/actions/fetch-codeql@main
1920
- uses: actions/checkout@v2
2021
with:
2122
ref: refs/pull/${{ github.event.number }}/merge
2223
fetch-depth: 2
2324
persist-credentials: false
25+
2426
- name: Determine changed files
2527
id: changes
2628
run: |
2729
(git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep '.qhelp$' | grep -v '.inc.qhelp';
2830
git diff --name-only --diff-filter=ACMRT HEAD~1 HEAD | grep '.inc.qhelp$' | xargs -d '\n' -rn1 basename | xargs -d '\n' -rn1 git grep -l) |
2931
sort -u > "${{ runner.temp }}/paths.txt"
3032
31-
- uses: ./.github/actions/fetch-codeql
32-
3333
- name: QHelp preview
3434
run: |
3535
if [ -s "${{ runner.temp }}/paths.txt" ]; then

0 commit comments

Comments
 (0)