File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 52
52
# OpenSSL is installed in a non-standard location in MacOS. See
53
53
# https://github.com/actions/virtual-environments/blob/main/images/macos/macos-latest-Readme.md
54
54
PKG_CONFIG_PATH :
${{ (matrix.os == 'macos-latest' && '/usr/lib/pkgconfig:/usr/local/opt/[email protected] /lib/pkgconfig') || (matrix.os == 'ubuntu-latest' && '/usr/lib/pkgconfig:/usr/local/lib/pkgconfig') || '' }}
55
-
55
+
56
56
# FIXME: this is arguably a bug, and pkg-config should return the right values!
57
57
LD_LIBRARY_PATH : ${{ (matrix.os != 'windows-latest' && '/usr/local/lib') || '' }}
58
58
75
75
automake `
76
76
libtool `
77
77
make
78
-
78
+
79
79
# this seems to break something. It _must_ come after the pacman setup
80
80
# above. It appears as if PATHEXT is set _after_ ghcup install ghc/cabal, and
81
81
# as such we'd need pacman.exe instead.
@@ -127,7 +127,7 @@ jobs:
127
127
shell : bash
128
128
run : echo '${{ steps.cabal-store.outputs.cabal-store }}'
129
129
130
- - uses : actions/checkout@v2
130
+ - uses : actions/checkout@v4
131
131
132
132
- name : " [PowerShell] Add build script path"
133
133
if : runner.os == 'Windows'
@@ -173,7 +173,7 @@ jobs:
173
173
cat dist-newstyle/cache/plan.json | jq -r '."install-plan"[].id' | sort | uniq > dependencies.txt
174
174
175
175
- name : Cache Cabal store
176
- uses : actions/cache@v2
176
+ uses : actions/cache@v4
177
177
with :
178
178
path : ${{ steps.cabal-store.outputs.cabal-store }}
179
179
key : cache-${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('dependencies.txt') }}
You can’t perform that action at this time.
0 commit comments