From dcb68ea918252e82e88ed0595596d5be6026e6ea Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 13 Jul 2026 00:55:37 +0200 Subject: [PATCH] Update checkout action Signed-off-by: Pol Henarejos --- .github/workflows/codeql.yml | 3 ++- .github/workflows/nightly.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4fb6bf4..c34d161 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: persist-credentials: false @@ -49,6 +49,7 @@ jobs: uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} + build-mode: ${{ matrix.language == 'cpp' && 'manual' || 'none' }} # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 56d7af8..6ad72b0 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -28,7 +28,7 @@ jobs: exit 1 } - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ matrix.refs }} submodules: 'recursive' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b42ad66..ba194c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout repository and submodules - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: recursive persist-credentials: false