Skip to content

Commit

Permalink
ci: Use latest version of download-artifact action
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlydog committed Oct 2, 2023
1 parent 7673ae7 commit 7531bb6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-powershell-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
prereleaseVersionNumber: ${{ steps.output-version-number.outputs.prereleaseVersionNumber }}
steps:
- name: Download prerelease module artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ env.prereleaseModuleArtifactName}}
path: ${{ env.artifactsDirectoryPath }}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
Install-Module -Name $moduleName -AllowPrerelease -RequiredVersion $prereleaseVersionNumber -Force -Scope CurrentUser -Repository PSGallery -ErrorAction Stop -Verbose
- name: Download deploy files artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ env.deployFilesArtifactName}}
path: ${{ env.artifactsDirectoryPath }}
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
Install-Module -Name $moduleName -AllowPrerelease -RequiredVersion $prereleaseVersionNumber -Force -Scope CurrentUser -Repository PSGallery -ErrorAction Stop -Verbose
- name: Download deploy files artifact from triggered workflow
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ env.deployFilesArtifactName}}
path: ${{ env.artifactsDirectoryPath }}
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
stableVersionNumber: ${{ steps.output-version-number.outputs.StableVersionNumber }}
steps:
- name: Download stable module artifact from triggered workflow
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ env.stableModuleArtifactName}}
path: ${{ env.artifactsDirectoryPath }}
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
Install-Module -Name $moduleName -RequiredVersion $stableVersionNumber -Force -Scope CurrentUser -Repository PSGallery -ErrorAction Stop -Verbose
- name: Download deploy files artifact from triggered workflow
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ env.deployFilesArtifactName}}
path: ${{ env.artifactsDirectoryPath }}
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
Install-Module -Name $moduleName -RequiredVersion $stableVersionNumber -Force -Scope CurrentUser -Repository PSGallery -ErrorAction Stop -Verbose
- name: Download deploy files artifact from triggered workflow
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: ${{ env.deployFilesArtifactName}}
path: ${{ env.artifactsDirectoryPath }}
Expand Down

0 comments on commit 7531bb6

Please sign in to comment.