From bb5355a7336d96279b87a9ad6a831a12a1b2264e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 Mar 2024 23:29:30 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4 Bumps [actions/download-artifact](https://github.com/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) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dotnet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 3e47e0c..83b374b 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -76,12 +76,12 @@ jobs: steps: - name: Download Database Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: database - name: Download Web Application Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: application @@ -111,12 +111,12 @@ jobs: steps: - name: Download Database Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Database - name: Download Web Application Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Application