From a9dfa9b32062797d1f33dac4274e752302020c27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Mar 2026 10:04:11 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-dotnet](https://github.com/actions/setup-dotnet) | `5.0.1` | `5.2.0` | | [gittools/actions](https://github.com/gittools/actions) | `4.2.0` | `4.4.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | | [azure/login](https://github.com/azure/login) | `2` | `3` | Updates `actions/setup-dotnet` from 5.0.1 to 5.2.0 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v5.0.1...v5.2.0) Updates `gittools/actions` from 4.2.0 to 4.4.2 - [Release notes](https://github.com/gittools/actions/releases) - [Commits](https://github.com/gittools/actions/compare/v4.2.0...v4.4.2) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) Updates `azure/login` from 2 to 3 - [Release notes](https://github.com/azure/login/releases) - [Commits](https://github.com/azure/login/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: gittools/actions dependency-version: 4.4.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: azure/login dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/dotnet.yml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ad38aaa..d719fd7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: # queries: ./path/to/local/query, your-org/your-repo/queries@main - name: Setup .NET - uses: actions/setup-dotnet@v5.0.1 + uses: actions/setup-dotnet@v5.2.0 with: dotnet-version: 10.0.x diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index e49d4b0..08f261f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -20,11 +20,11 @@ jobs: #Install and calculate the new version with GitVersion - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v4.2.0 + uses: gittools/actions/gitversion/setup@v4.4.2 with: versionSpec: 6.x - name: Determine Version - uses: gittools/actions/gitversion/execute@v4.2.0 + uses: gittools/actions/gitversion/execute@v4.4.2 id: gitversion # step id used as reference for output values - name: Display GitVersion outputs run: | @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v5.0.1 + uses: actions/setup-dotnet@v5.2.0 with: dotnet-version: 10.0.x - name: Test @@ -52,12 +52,12 @@ jobs: - name: Pack dll to NuGet package run: dotnet pack src/MandMCounter.Core/MandMCounter.Core.csproj --configuration release -p:Version='${{ steps.gitversion.outputs.MajorMinorPatch }}' - name: Publish Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: service path: ${{ github.workspace }}/service - name: Upload NuGet package to GitHub - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: nugetPackage path: src/MandMCounter.Core/bin/Release/ @@ -87,9 +87,9 @@ jobs: if: github.ref == 'refs/heads/main' # only run job if on the main branch steps: - name: Download the build artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 - name: Azure Login - uses: azure/login@v2 + uses: azure/login@v3 with: creds: ${{ secrets.ORG_AZURE_SP }} #- name: Deploy infrastructure with ARM templates @@ -113,7 +113,7 @@ jobs: #Push NuGet package to GitHub packages - name: Download nuget package artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 - name: Prep packages run: dotnet nuget add source --username samsmithnz --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/SamSmithNZ-dotcom/index.json" - name: Push package to GitHub packages