Skip to content

Commit 33bc44a

Browse files
author
Greg Roth
authored
Update github actions versions to enable coverage (microsoft#7183)
Coverage generation has failed because of the deprecation of versions of upload-artifact before v4 which the version of upload-pages-artifact that DXC used made use of. This bumps that and all other actions to the latest versions.
1 parent 7269298 commit 33bc44a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/coverage-gh-pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
timeout-minutes: 240
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
submodules: true
3232
- name: Setup Pages
33-
uses: actions/configure-pages@v2
33+
uses: actions/configure-pages@v5
3434
- name: Install dependencies
3535
run: sudo apt install -y ninja-build
3636
- name: Configure
@@ -44,7 +44,7 @@ jobs:
4444
- name: Force artifact permissions
4545
run: chmod -c -R +rX ${{github.workspace}}/build/report
4646
- name: Upload artifact
47-
uses: actions/upload-pages-artifact@v1
47+
uses: actions/upload-pages-artifact@v3
4848
with:
4949
path: ${{github.workspace}}/build/report
5050

@@ -60,4 +60,4 @@ jobs:
6060
steps:
6161
- name: Deploy to GitHub Pages
6262
id: deployment
63-
uses: actions/deploy-pages@v1
63+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)