From c4f0e26deaf1ac40bbc78dc0e500f32d05857890 Mon Sep 17 00:00:00 2001 From: Mortifia Date: Sat, 25 Jul 2026 02:48:16 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20modernise=20codeql-analysis.yml=20(actio?= =?UTF-8?q?ns=20d=C3=A9pr=C3=A9ci=C3=A9es)=20avant=20r=C3=A9activation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit github/codeql-action@v1 est retiré par GitHub, actions/checkout@v2 tourne sur un runtime Node déprécié — le workflow était désactivé pour inactivité depuis 2023-09-12 et aurait probablement échoué en l'état s'il avait été réactivé tel quel. v1 -> v3 (init/autobuild/analyze), checkout@v2 -> v4. Closes #339 --- .github/workflows/codeql-analysis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 463206f3..8c76a0b4 100755 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,11 +38,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -53,7 +53,7 @@ jobs: # 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) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v3 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -67,4 +67,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v3