Skip to content

Commit 6ed0181

Browse files
authored
Merge pull request #11265 from haskell/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2 parents f4b2111 + 5be330a commit 6ed0181

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
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
_build/bin/cabal --version
6060
61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
with:
6363
name: cabal-${{ matrix.os }}-${{ matrix.ghc }}-bootstrapped
6464
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@v4
76+
- uses: actions/upload-artifact@v5
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
@@ -219,7 +219,7 @@ jobs:
219219
# - Make it available in the workflow to make easier testing it locally
220220
- name: Upload cabal-install executable to workflow artifacts
221221
if: matrix.ghc == env.GHC_FOR_RELEASE
222-
uses: actions/upload-artifact@v4
222+
uses: actions/upload-artifact@v5
223223
with:
224224
name: cabal-${{ runner.os }}-${{ env.CABAL_ARCH }}
225225
path: ${{ env.CABAL_EXEC_TAR }}
@@ -378,7 +378,7 @@ jobs:
378378
echo "CABAL_EXEC_TAR=$CABAL_EXEC_TAR" >> "$GITHUB_ENV"
379379
380380
- name: Upload cabal-install executable to workflow artifacts
381-
uses: actions/upload-artifact@v4
381+
uses: actions/upload-artifact@v5
382382
with:
383383
name: cabal-${{ runner.os }}-static-x86_64
384384
path: ${{ env.CABAL_EXEC_TAR }}

0 commit comments

Comments
 (0)