From 1c8f86a4163936ced43a5c6a3c657aa7a20735d4 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Sun, 28 Jan 2024 22:18:49 +0000
Subject: [PATCH] Bump the github-actions group with 4 updates

Bumps the github-actions group with 4 updates: [actions/download-artifact](https://github.com/actions/download-artifact), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/cache](https://github.com/actions/cache) and [microsoft/setup-msbuild](https://github.com/microsoft/setup-msbuild).


Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v3...v4)

Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)

Updates `actions/cache` from 3 to 4
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3...v4)

Updates `microsoft/setup-msbuild` from 1.3.1 to 1.3.2
- [Release notes](https://github.com/microsoft/setup-msbuild/releases)
- [Changelog](https://github.com/microsoft/setup-msbuild/blob/main/building-release.md)
- [Commits](https://github.com/microsoft/setup-msbuild/compare/v1.3.1...v1.3.2)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: microsoft/setup-msbuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
---
 .github/workflows/snapshoty.yml        | 4 ++--
 .github/workflows/test-linux.yml       | 2 +-
 .github/workflows/test-windows-iis.yml | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/snapshoty.yml b/.github/workflows/snapshoty.yml
index 1c16b5d93..5e8c4d4c8 100644
--- a/.github/workflows/snapshoty.yml
+++ b/.github/workflows/snapshoty.yml
@@ -17,12 +17,12 @@ jobs:
       
     # used by opbeans .NET to reference the on commit nuget packages
     # TODO: update opbeans to use our feedz.io packages
-    - uses: actions/download-artifact@v3
+    - uses: actions/download-artifact@v4
       with:
         name: snapshoty-linux
         path: build/output
 
-    # - uses: actions/download-artifact@v3
+    # - uses: actions/download-artifact@v4
     #   with:
     #     name: snapshoty-windows
     #     path: build/output
diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml
index 98c8501b8..db4d78d97 100644
--- a/.github/workflows/test-linux.yml
+++ b/.github/workflows/test-linux.yml
@@ -41,7 +41,7 @@ jobs:
     - name: Package
       run: ./build.sh pack
     
-    - uses: actions/upload-artifact@v3
+    - uses: actions/upload-artifact@v4
       if: github.event_name == 'push' && startswith(github.ref, 'refs/heads')
       with:
           name: snapshoty-linux
diff --git a/.github/workflows/test-windows-iis.yml b/.github/workflows/test-windows-iis.yml
index 864bf48b2..598bf551b 100644
--- a/.github/workflows/test-windows-iis.yml
+++ b/.github/workflows/test-windows-iis.yml
@@ -42,12 +42,12 @@ jobs:
     - name: Bootstrap Action Workspace
       uses: ./.github/workflows/bootstrap
             
-    - uses: actions/cache@v3
+    - uses: actions/cache@v4
       with:
         path: ~/.nuget/packages
         key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.[cf]sproj*') }}
     - name: Add msbuild to PATH
-      uses: microsoft/setup-msbuild@v1.3.1
+      uses: microsoft/setup-msbuild@v1.3.2
 
     - name: Build the application
       shell: cmd
@@ -96,7 +96,7 @@ jobs:
 
     - name: Store test results
       if: success() || failure()
-      uses: actions/upload-artifact@v3
+      uses: actions/upload-artifact@v4
       with:
         name: test-results-iis
         path: build/output/junit-*.xml
\ No newline at end of file