From 80220dcd466d9868518ee9f1a1d2eac8726c81cf Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Sun, 12 Oct 2025 14:06:19 +0100 Subject: [PATCH] Use `setup-codeql` action in `bundle-from-toolcache` check --- .github/workflows/__bundle-from-toolcache.yml | 5 ++--- pr-checks/checks/bundle-from-toolcache.yml | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/__bundle-from-toolcache.yml b/.github/workflows/__bundle-from-toolcache.yml index c8957ac58..639595af5 100644 --- a/.github/workflows/__bundle-from-toolcache.yml +++ b/.github/workflows/__bundle-from-toolcache.yml @@ -67,10 +67,9 @@ jobs: if (allCodeqlVersions.length === 0) { throw new Error(`CodeQL could not be found in the toolcache`); } - - id: init - uses: ./../action/init + - id: setup-codeql + uses: ./../action/setup-codeql with: - languages: javascript tools: ${{ steps.prepare-test.outputs.tools-url }} - name: Check CodeQL is installed within the toolcache uses: actions/github-script@v8 diff --git a/pr-checks/checks/bundle-from-toolcache.yml b/pr-checks/checks/bundle-from-toolcache.yml index 5a53ec12d..5642a15f9 100644 --- a/pr-checks/checks/bundle-from-toolcache.yml +++ b/pr-checks/checks/bundle-from-toolcache.yml @@ -15,10 +15,9 @@ steps: if (allCodeqlVersions.length === 0) { throw new Error(`CodeQL could not be found in the toolcache`); } - - id: init - uses: ./../action/init + - id: setup-codeql + uses: ./../action/setup-codeql with: - languages: javascript tools: ${{ steps.prepare-test.outputs.tools-url }} - name: Check CodeQL is installed within the toolcache uses: actions/github-script@v8