From a6fad99f6ad1dc849b403d585357b52ab228ca14 Mon Sep 17 00:00:00 2001 From: Marti Maria Date: Tue, 2 Jan 2024 10:23:06 +0100 Subject: [PATCH] Revert "Merge pull request #425 from mm2/dependabot/github_actions/github-actions-f6bdc0c527" This reverts commit fd80bc1fe1abd3cd797de393c40a921f5d8d3022, reversing changes made to a02310bcfdb399e15bc7e7e7a901b596264f0425. --- .github/workflows/build.yml | 14 +++++++------- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/scorecard.yml | 8 ++++---- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e121e1e6..5d6cce72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: Ubuntu: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Build Ubuntu run: | ./configure --with-fastfloat --with-threaded @@ -23,7 +23,7 @@ jobs: Ubuntu-20-04: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Build Ubuntu run: | ./configure --with-fastfloat --with-threaded @@ -33,7 +33,7 @@ jobs: MacOS: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Build MacOS run: | ./configure --with-fastfloat --with-threaded @@ -44,7 +44,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - uses: ilammy/msvc-dev-cmd@v1 with: arch: x64 @@ -59,7 +59,7 @@ jobs: Windows-32: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - uses: ilammy/msvc-dev-cmd@v1 with: arch: win32 @@ -74,7 +74,7 @@ jobs: Ubuntu-meson: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Install packages run: | @@ -91,7 +91,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Install packages run: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 9f1fcd21..5ebb981e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v2 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. @@ -44,7 +44,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -55,7 +55,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@v3 + uses: github/codeql-action/autobuild@v2 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -69,4 +69,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v2 diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 21f13a20..901a86cd 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -25,12 +25,12 @@ jobs: steps: - name: "Checkout code" - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 with: persist-credentials: false - name: "Run analysis" - uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.3.1 + uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2 with: results_file: results.sarif results_format: sarif @@ -42,7 +42,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 + uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 with: name: SARIF file path: results.sarif @@ -50,6 +50,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@1500a131381b66de0c52ac28abb13cd79f4b7ecc # v2.22.12 + uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4 with: sarif_file: results.sarif