Skip to content

Commit

Permalink
Bump action scripts used to version 4.
Browse files Browse the repository at this point in the history
This tries to fix the build error showing up at the GitHub CI Windows
build.

The build reports an unsupported node version that is used in one of the
"official" action scripts (in that case checkout@v3). Therefore the
build now uses version 4 on all scripts.
  • Loading branch information
michaelonken committed Mar 8, 2024
1 parent 5f59183 commit e2429eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: microsoft/[email protected]
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
echo "Listing install dir: ${{ github.workspace }}\dcmtk-${{ env.NOW }}-${{ env.COMMIT_SHORT_SHA }}"
ls ${{ github.workspace }}\dcmtk-${{ env.NOW }}-${{ env.COMMIT_SHORT_SHA }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dcmtk-install-zip-package
path: ${{ github.workspace }}\dcmtk-${{ env.NOW }}-${{ env.COMMIT_SHORT_SHA }}\dcmtk-*-win64.zip
Expand All @@ -98,10 +98,10 @@ jobs:
needs: build-windows

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dcmtk-install-zip-package
path: ${{ github.workspace }}\dcmtk-install
Expand Down

0 comments on commit e2429eb

Please sign in to comment.