From: Daniel Stenberg Date: Fri, 26 Jun 2020 06:49:23 +0000 (+0200) Subject: codeql-analysis.yml: fix the 'languages' setting X-Git-Tag: curl-7_71_1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7de2a4ce35dee7a9409ab78962ae12894a073d60;p=thirdparty%2Fcurl.git codeql-analysis.yml: fix the 'languages' setting It needs a 'with:' in front of it. --- diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1b67e22fbd..a8329ff7c5 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -23,11 +23,12 @@ jobs: # the head of the pull request instead of the merge commit. - run: git checkout HEAD^2 if: ${{ github.event_name == 'pull_request' }} - + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 - languages: cpp + with: + languages: cpp # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below)