Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/MigrationToolsTelemetery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
needs: build
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: functionapp
path: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,10 @@ jobs:
# Release app when RunRelease is true (ForceRelease OR src changed)
if: ${{ success() && needs.Setup.outputs.nkdAgility_RunRelease == 'true' }}
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: AzureDevOpsMigrationTools-Packages
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: AzureDevOpsMigrationTools-Scripts
path: ./build/
Expand Down Expand Up @@ -592,7 +592,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
- name: "Find files"
shell: pwsh
run: |
Expand All @@ -619,7 +619,7 @@ jobs:
# Only when app was released
if: ${{ success() && needs.Setup.outputs.nkdAgility_RunRelease == 'true' }}
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: AzureDevOpsMigrationTools-Packages
- name: "Choco"
Expand All @@ -645,7 +645,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
- name: "Find files"
shell: pwsh
run: |
Expand All @@ -666,7 +666,7 @@ jobs:
if: ${{ !(github.event.pull_request.head.repo.fork) }}
steps:
- name: Download a single artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: AzureDevOpsMigrationTools-Site2
path: ./_site2
Expand Down