From 8aae5c7164be103fbd82eab704023f3e692a4646 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 13:40:00 +0000 Subject: [PATCH] Pin dependencies --- .github/workflows/ci-build.yml | 20 ++++++++++---------- .github/workflows/codeql-analysis.yml | 12 ++++++------ .github/workflows/pr-build.yml | 20 ++++++++++---------- 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index e1bff332..b36e6116 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -33,42 +33,42 @@ jobs: steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - name: Fetch all tags and branches run: git fetch --prune --unshallow # .net Core setup - name: Setup .NET Core 2.1 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 2.1 - name: Setup .NET Core 3.1 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 3.1 - name: Setup .NET 5.x - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 5.x - name: Setup .NET 6.x - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 6.x # Caching Tools - name: Cache Tools - uses: actions/cache@v4.0.1 + uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 with: path: tools key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} # Build - name: Build Project - uses: cake-build/cake-action@v1 + uses: cake-build/cake-action@a6eb054329257c9e70a6c6bf01747ad6e1d9d52b # v1 with: script-path: recipe.cake target: CI @@ -78,7 +78,7 @@ jobs: # Publish artifacts - name: Publish Issues-Report as build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 if: matrix.os == 'windows-latest' with: if-no-files-found: warn @@ -86,7 +86,7 @@ jobs: path: BuildArtifacts/report.html - name: Publish NuGet package as build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 if: matrix.os == 'ubuntu-22.04' with: if-no-files-found: warn @@ -94,7 +94,7 @@ jobs: path: BuildArtifacts/Packages/**/* - name: Publish coverage artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 if: matrix.os == 'ubuntu-22.04' with: if-no-files-found: warn diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 26d4ec7e..566538ec 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,21 +35,21 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - name: Setup .NET 5.x - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 5.x - name: Setup .NET 6.x - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 6.x # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -60,7 +60,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@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -74,4 +74,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3 diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index bd92c16a..1034a531 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -17,42 +17,42 @@ jobs: steps: - name: Checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - name: Fetch all tags and branches run: git fetch --prune --unshallow # .net Core setup - name: Setup .NET Core 2.1 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 2.1 - name: Setup .NET Core 3.1 - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 3.1 - name: Setup .NET 5.x - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 5.x - name: Setup .NET 6.x - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 with: dotnet-version: 6.x # Caching Tools - name: Cache Tools - uses: actions/cache@v4.0.1 + uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1 with: path: tools key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} # Build - name: Build Project - uses: cake-build/cake-action@v1 + uses: cake-build/cake-action@a6eb054329257c9e70a6c6bf01747ad6e1d9d52b # v1 with: script-path: recipe.cake target: CI @@ -62,7 +62,7 @@ jobs: # Publish - name: Publish Issues-Report as build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 if: matrix.os == 'windows-latest' with: if-no-files-found: warn @@ -70,7 +70,7 @@ jobs: path: BuildArtifacts/report.html - name: Publish NuGet package as build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 if: matrix.os == 'ubuntu-22.04' with: if-no-files-found: warn @@ -78,7 +78,7 @@ jobs: path: BuildArtifacts/Packages/**/* - name: Publish coverage artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 if: matrix.os == 'ubuntu-22.04' with: if-no-files-found: warn