Merge pull request #39 from actions/download-artifact

Update download-artifact
This commit is contained in:
Begona Guereca
2024-04-04 07:34:22 -07:00
committed by GitHub
+4 -4
View File
@@ -107,7 +107,7 @@ jobs:
if: needs.execute-actions-importer.outputs.command == 'audit' if: needs.execute-actions-importer.outputs.command == 'audit'
needs: execute-actions-importer needs: execute-actions-importer
steps: steps:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v4
if: always() if: always()
with: with:
name: output name: output
@@ -142,7 +142,7 @@ jobs:
if: needs.execute-actions-importer.outputs.command == 'dry-run' if: needs.execute-actions-importer.outputs.command == 'dry-run'
needs: execute-actions-importer needs: execute-actions-importer
steps: steps:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v4
if: always() if: always()
with: with:
name: output name: output
@@ -198,7 +198,7 @@ jobs:
if: needs.execute-actions-importer.outputs.command == 'migrate' if: needs.execute-actions-importer.outputs.command == 'migrate'
needs: execute-actions-importer needs: execute-actions-importer
steps: steps:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v4
if: always() if: always()
with: with:
name: logs name: logs
@@ -234,7 +234,7 @@ jobs:
needs: [execute-actions-importer, audit, migrate, dry-run] needs: [execute-actions-importer, audit, migrate, dry-run]
if: always() if: always()
steps: steps:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v4
if: always() && needs.execute-actions-importer.result == 'failure' if: always() && needs.execute-actions-importer.result == 'failure'
with: with:
name: logs name: logs