From 5ee0e9b619785d4442250f467874047876d74f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Cser=C3=A9p?= Date: Fri, 5 Dec 2025 14:38:26 +0100 Subject: [PATCH 1/3] Update GitHub actions versions in the CodeQL workflow --- .github/workflows/codeql.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 89d8ebace..2deb250d3 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -23,18 +23,18 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: javascript-typescript build-mode: none # Perform CodeQL analysis - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:javascript-typescript" @@ -50,11 +50,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: c-cpp build-mode: manual @@ -130,7 +130,7 @@ jobs: # Perform CodeQL analysis - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:c-cpp" From 81cd019154d6fe12a6e861d4fcda151d2154ac38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Cser=C3=A9p?= Date: Fri, 5 Dec 2025 16:22:55 +0100 Subject: [PATCH 2/3] Add cleanup for build2 directory in postcompile script to save space --- .github/scripts/ubuntu-22.04/postcompile_build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/ubuntu-22.04/postcompile_build.sh b/.github/scripts/ubuntu-22.04/postcompile_build.sh index c33212c69..5ec0f3fac 100755 --- a/.github/scripts/ubuntu-22.04/postcompile_build.sh +++ b/.github/scripts/ubuntu-22.04/postcompile_build.sh @@ -6,4 +6,5 @@ echo "${INSTALL_PATH}/odb/bin" >> $GITHUB_PATH echo "CMAKE_PREFIX_PATH=${INSTALL_PATH}/odb:$CMAKE_PREFIX_PATH" >> $GITHUB_ENV # Clean up dependency sources and intermediate binaries to save space -rm -rf ${DOWNLOAD_PATH}/odb \ No newline at end of file +rm -rf ${DOWNLOAD_PATH}/odb +rm -rf ${INSTALL_PATH}/build2 From c86197aa6f6a1a60908ab40791c25c78d4f18b82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Cser=C3=A9p?= Date: Tue, 9 Dec 2025 07:15:09 +0100 Subject: [PATCH 3/3] Clean up build2-toolchain intermediate binaries Remove build2-toolchain intermediate binaries during cleanup. --- .github/scripts/ubuntu-22.04/postcompile_build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/ubuntu-22.04/postcompile_build.sh b/.github/scripts/ubuntu-22.04/postcompile_build.sh index 5ec0f3fac..be4a90818 100755 --- a/.github/scripts/ubuntu-22.04/postcompile_build.sh +++ b/.github/scripts/ubuntu-22.04/postcompile_build.sh @@ -8,3 +8,4 @@ echo "CMAKE_PREFIX_PATH=${INSTALL_PATH}/odb:$CMAKE_PREFIX_PATH" >> $GITHUB_ENV # Clean up dependency sources and intermediate binaries to save space rm -rf ${DOWNLOAD_PATH}/odb rm -rf ${INSTALL_PATH}/build2 +rm -rf ./build2-toolchain-*