From 36baed22d54ebe04f7eff2fc1d143c39bca4c8b9 Mon Sep 17 00:00:00 2001 From: Phuoc Tran <57540319+tvqphuoc01@users.noreply.github.com> Date: Sat, 26 Oct 2024 16:12:24 +0700 Subject: [PATCH] Update version of codeql-analysis.yml codeQL v1 is deprecated so we should upgrade to v2: https://github.blog/changelog/2023-01-18-code-scanning-codeql-action-v1-is-now-deprecated/ --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 97c08e80..16a16ae0 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -29,10 +29,10 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 # Override language selection by uncommenting this and choosing your languages with: languages: python - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2