Skip to content

Commit

Permalink
BugFix - Update upload and download artifact version to V4 (#195)
Browse files Browse the repository at this point in the history
* Fix download artifact

* fix upload artifact
  • Loading branch information
singhgss authored Sep 5, 2024
1 parent d2adb0a commit 616c446
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-update-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
}
}
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./psmodules/*.zip
Expand All @@ -142,7 +142,7 @@ jobs:
- name: Check Out
uses: actions/checkout@v3
- name: Download zipped modules and replace old ones
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./psmodules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_dev_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
}
}
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./psmodules/*.zip
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Check out
uses: actions/checkout@v3
- name: Download zipped modules and replace old ones
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: ${{env.ARTIFACT_NAME}}
path: ./psmodules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
}
}
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ github.workspace }}
Expand All @@ -139,7 +139,7 @@ jobs:
contents: write
steps:
- name: Download signed ps scripts and zipped modules
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sign-scripts-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
}
}
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./psmodules/*.zip
Expand All @@ -148,7 +148,7 @@ jobs:
- name: Check Out
uses: actions/checkout@v3
- name: Download zipped modules and replace old ones
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: ${{ env.ARTIFACT_NAME }}
path: ./psmodules
Expand Down

0 comments on commit 616c446

Please sign in to comment.