Skip to content

Commit 5423cf6

Browse files
committed
fix ci workflow
1 parent 3f89d47 commit 5423cf6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
steps:
4242

4343
- name: Check out
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v4
4545

4646
- name: Cache stack global package db
4747
id: stack-global
48-
uses: actions/cache@v2
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.stack
5151
key: ${{ runner.os }}-stack-global-${{ matrix.plan.ghc }}-${{ hashFiles('**.yaml') }}
@@ -54,15 +54,15 @@ jobs:
5454
5555
- name: Cache stack-installed programs in ~/.local/bin
5656
id: stack-programs
57-
uses: actions/cache@v2
57+
uses: actions/cache@v4
5858
with:
5959
path: ~/.local/bin
6060
key: ${{ runner.os }}-stack-programs-${{ matrix.plan.ghc }}-${{ hashFiles('**.yaml') }}
6161
restore-keys: |
6262
${{ runner.os }}-stack-programs-${{ matrix.plan.ghc }}
6363
6464
- name: Cache .stack-work
65-
uses: actions/cache@v2
65+
uses: actions/cache@v4
6666
with:
6767
path: .stack-work
6868
key: ${{ runner.os }}-stack-work-${{ matrix.plan.ghc }}-${{ hashFiles('**.yaml') }}

0 commit comments

Comments
 (0)