Skip to content

Commit dadad70

Browse files
committed
upgrade actions/upload-artifact to v4
1 parent 969343a commit dadad70

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/bootstrap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
_build/bin/cabal --version
7171
72-
- uses: actions/upload-artifact@v3
72+
- uses: actions/upload-artifact@v4
7373
with:
7474
name: cabal-${{ matrix.os }}-${{ matrix.ghc }}-bootstrapped
7575
path: _build/artifacts/*

.github/workflows/users-guide.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: |
7474
make SPHINX_HTML_OUTDIR=html users-guide
7575
76-
- uses: actions/upload-artifact@v3
76+
- uses: actions/upload-artifact@v4
7777
with:
7878
name: users-guide-html
7979
path: html/

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
# - Make it available in the workflow to make easier testing it locally
192192
- name: Upload cabal-install executable to workflow artifacts
193193
if: matrix.ghc == env.GHC_FOR_RELEASE
194-
uses: actions/upload-artifact@v3
194+
uses: actions/upload-artifact@v4
195195
with:
196196
name: cabal-${{ runner.os }}-x86_64
197197
path: ${{ env.CABAL_EXEC_TAR }}
@@ -338,7 +338,7 @@ jobs:
338338
echo "CABAL_EXEC_TAR=$CABAL_EXEC_TAR" >> "$GITHUB_ENV"
339339
340340
- name: Upload cabal-install executable to workflow artifacts
341-
uses: actions/upload-artifact@v3
341+
uses: actions/upload-artifact@v4
342342
with:
343343
name: cabal-${{ runner.os }}-static-x86_64
344344
path: ${{ env.CABAL_EXEC_TAR }}

0 commit comments

Comments
 (0)