Skip to content

Commit

Permalink
update to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
retailcoder committed Oct 27, 2024
1 parent 1fa8817 commit f5eace5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up dependency caching for faster builds
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand All @@ -30,7 +30,7 @@ jobs:
run: dotnet publish "rubberduckvba.Server\rubberduckvba.Server.csproj" --configuration Release --output ${{env.DOTNET_ROOT}}\pub

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: .net-app
path: ${{env.DOTNET_ROOT}}/pub
Expand All @@ -45,7 +45,7 @@ jobs:
needs: build
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: .net-app
- name: Deploy to IIS
Expand Down

0 comments on commit f5eace5

Please sign in to comment.