Skip to content
Merged
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/test-workflow-dotnet8-lcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
run: dotnet publish --configuration Release --output ./output

- name: Upload artifact for the deployment job
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.AZURE_FUNCTIONAPP_PROJECT_PATH }}/output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-dotnet8-wcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
run: dotnet publish --configuration Release --output ./output

- name: Upload artifact for the deployment job
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.AZURE_FUNCTIONAPP_PROJECT_PATH }}/output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-java8-lcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# Perform additional steps such as running tests, if needed

- name: 'Upload artifact for the deployment job'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.POM_XML_DIRECTORY }}/target/azure-functions/${{ env.AZURE_FUNCTIONAPP_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-java8-wcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# Perform additional steps such as running tests, if needed

- name: 'Upload artifact for the deployment job'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.POM_XML_DIRECTORY }}/target/azure-functions/${{ env.AZURE_FUNCTIONAPP_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-node20-lcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: npm prune --production

- name: 'Upload artifact for the deployment job'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.AZURE_FUNCTIONAPP_PROJECT_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-node20-wcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: npm prune --production

- name: 'Upload artifact for the deployment job'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.AZURE_FUNCTIONAPP_PROJECT_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-python310-flexcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# Perform additional steps such as running tests, if needed

- name: 'Upload artifact for the deployment job'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.AZURE_FUNCTIONAPP_PROJECT_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflow-python310-lcon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# Perform additional steps such as running tests, if needed

- name: 'Upload artifact for the deployment job'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ env.BUILD_ARTIFACT_NAME }}
path: ${{ env.AZURE_FUNCTIONAPP_PROJECT_PATH }}
Expand Down
Loading