Skip to content

Commit

Permalink
Bump actions/download-artifact & actions/upload-artifact from 3 to 4 …
Browse files Browse the repository at this point in the history
…in /.github/workflows (microsoft#1211)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Adonais Romero Gonzalez <[email protected]>
  • Loading branch information
dependabot[bot] and NeoAdonis authored Sep 24, 2024
1 parent 19e5c3a commit 616b191
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
WDS_ReportFileName: _overview.${{ matrix.configuration }}.${{ matrix.platform }}

- name: Archive build logs and overview build reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: logs
name: logs-${{ matrix.configuration }}-${{ matrix.platform }}
path: _logs

report:
Expand All @@ -57,16 +57,17 @@ jobs:
uses: actions/checkout@v4

- name: Retrieve overview reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: logs
path: _logs
pattern: logs-*
merge-multiple: true

- name: Join and generate global reports
run: .\.github\scripts\Join-CsvReports.ps1

- name: Archive global overview build reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: _logs/_overview.all.*
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
WDS_ReportFileName: _overview.${{ matrix.configuration }}.${{ matrix.platform }}

- name: Archive build logs and overview build reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: logs
name: logs-${{ matrix.configuration }}-${{ matrix.platform }}
path: _logs

report:
Expand All @@ -49,16 +49,17 @@ jobs:
uses: actions/checkout@v4

- name: Retrieve overview reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: logs
path: _logs
pattern: logs-*
merge-multiple: true

- name: Join and generate global reports
run: .\.github\scripts\Join-CsvReports.ps1

- name: Archive global overview build reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
path: _logs/_overview.all.*

0 comments on commit 616b191

Please sign in to comment.