Skip to content

Commit

Permalink
ci: Use latest UploadArtifact action
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlydog committed Mar 20, 2024
1 parent 4ef667a commit 10c53a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test-powershell-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,19 +221,19 @@ jobs:
& git push origin $newVersionTag
- name: Upload prerelease module artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.prereleaseModuleArtifactName }}
path: ${{ env.prereleaseModuleArtifactDirectoryPath }}

- name: Upload stable module artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.stableModuleArtifactName }}
path: ${{ env.stableModuleArtifactDirectoryPath }}

- name: Upload deploy files artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.deployFilesArtifactName }}
path: ${{ env.deployFilesArtifactDirectoryPath }}

0 comments on commit 10c53a5

Please sign in to comment.