Skip to content

Commit

Permalink
Updated actions to resolve deprecation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Oct 15, 2024
1 parent 7e05712 commit 833e0d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ModuleBuildTestRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
env:
ModuleVersion: ${{ steps.GitVersion.outputs.NuGetVersionV2 }}
- name: Publish Build Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.buildArtifactName }}
path: ${{ env.buildFolderName }}/
Expand All @@ -57,15 +57,15 @@ jobs:
with:
fetch-depth: 0
- name: Download Build Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.buildArtifactName }}
path: ${{ env.buildFolderName }}/
- name: Run Tests
shell: powershell
run: './build.ps1 -Tasks Test'
- name: Publish Test Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.buildFolderName }}/${{ env.testResultFolderName }}/
name: CodeCoverageWinPS51
Expand All @@ -81,7 +81,7 @@ jobs:
with:
fetch-depth: 0
- name: Download Build Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ env.buildArtifactName }}
path: ${{ env.buildFolderName }}/
Expand Down

0 comments on commit 833e0d1

Please sign in to comment.