From 6e24b712c18938de8d67af7373e25ad089461ade Mon Sep 17 00:00:00 2001 From: David Wang Date: Tue, 16 Apr 2024 20:51:38 -0400 Subject: [PATCH] fix: Totally didn't realize that @stable wasn't a thing for all actions (codeql) --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index df69bca..5953862 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -60,7 +60,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@stable + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} build-mode: ${{ matrix.build-mode }} @@ -87,6 +87,6 @@ jobs: exit 1 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@stable + uses: github/codeql-action/analyze@v2 with: category: "/language:${{matrix.language}}"