From ac3e8af9fdb991a1c113562541d8ddaafc219286 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 1 Nov 2024 11:00:37 -0500 Subject: [PATCH] Update github action versions --- .github/workflows/ci-scripts-build.yml | 8 ++++---- .github/workflows/codeql.yml | 8 +++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index 0107d605d..99d197a05 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -196,7 +196,7 @@ jobs: cross: linux-arm@arm-linux-gnueabihf steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Automatic core dumper analysis @@ -214,7 +214,7 @@ jobs: run: python .ci/cue.py -T 60M test - name: Upload tapfiles Artifact if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tapfiles ${{ matrix.name }} path: '**/O.*/*.tap' @@ -281,7 +281,7 @@ jobs: # people would rather just break all existing scripts... [ -e /usr/bin/python ] || ln -sf python3 /usr/bin/python python --version - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - name: Automatic core dumper analysis @@ -298,7 +298,7 @@ jobs: run: python .ci/cue.py -T 20M test - name: Upload tapfiles Artifact if: ${{ always() }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: tapfiles ${{ matrix.name }} path: '**/O.*/*.tap' diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 08e1f86ad..09223d589 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout Repositories - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: false @@ -44,19 +44,21 @@ jobs: sudo apt-get install --yes libreadline-dev - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} config-file: ./.github/codeql/config.yml - name: Build C/C++ run: | + echo '*** Building with these versions >>>' g++ --version make --version perl --version + echo '<<<' make -sj2 || echo '*** Ignoring build failure for CodeQL ***' - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{ matrix.language }}"