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/deploy-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
$summary | ConvertTo-Json -Depth 5 | Set-Content -Path (Join-Path $PWD 'artifacts\azure-deployment-evidence\deployment-summary.json') -Encoding UTF8

- name: Upload Azure deployment evidence
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: azure-deployment-${{ inputs.target_environment }}-${{ github.run_id }}
path: artifacts/azure-deployment-evidence
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-dataverse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:

- name: Upload deployment evidence
if: ${{ always() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dataverse-deployment-${{ inputs.target_environment }}-${{ inputs.artifact_version }}
path: artifacts/deployment-evidence
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-dataverse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
run: .\eng\scripts\Invoke-DataversePackaging.ps1 -RunSolutionCheck:$false -GenerateSettings:$true

- name: Upload Dataverse package artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dataverse-${{ steps.version.outputs.semVer }}
path: artifacts/dataverse
Expand Down Expand Up @@ -265,7 +265,7 @@ jobs:
Add-Content -Path $env:GITHUB_OUTPUT -Value "name=$artifactName"

- name: Upload Dataverse package artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ steps.artifact.outputs.name }}
path: artifacts/dataverse
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
.\eng\scripts\New-ReleaseEvidence.ps1 -OutputPath (Join-Path $bundleRoot 'release-evidence.json') -WorkflowRunId $env:GITHUB_RUN_ID | Out-Host

- name: Upload release-candidate bundle
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-candidate-${{ needs.version.outputs.semVer }}
path: artifacts/release-candidate/${{ needs.version.outputs.semVer }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Upload npm audit evidence
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: npm-audit-${{ github.run_id }}
path: artifacts/security/npm-audit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
run: .\eng\scripts\Test-AzureContract.ps1

- name: Upload validation staging artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: validate-${{ steps.version.outputs.semVer }}
path: artifacts/validate
Expand Down
Loading