@@ -100,14 +100,14 @@ jobs:
100100 tar -czf cabal.tar.gz *
101101
102102 - name : Upload workspace
103- uses : actions/upload-artifact@v4
103+ uses : actions/upload-artifact@v5
104104 with :
105105 name : workspace-${{ matrix.ghc }}-${{ matrix.os }}
106106 retention-days : 1
107107 path : workspace.tar.gz
108108
109109 - name : Upload .cabal
110- uses : actions/upload-artifact@v4
110+ uses : actions/upload-artifact@v5
111111 with :
112112 name : cabal-home-${{ matrix.ghc }}-${{ matrix.os }}
113113 retention-days : 1
@@ -134,13 +134,13 @@ jobs:
134134 enable-stack : false
135135
136136 - name : Download cabal home
137- uses : actions/download-artifact@v4
137+ uses : actions/download-artifact@v6
138138 with :
139139 name : cabal-home-${{ matrix.ghc }}-${{ matrix.os }}
140140 path : .
141141
142142 - name : Download workspace
143- uses : actions/download-artifact@v4
143+ uses : actions/download-artifact@v6
144144 with :
145145 name : workspace-${{ matrix.ghc }}-${{ matrix.os }}
146146 path : .
@@ -165,7 +165,7 @@ jobs:
165165 run : find bench-results -name "*.csv" -or -name "*.svg" -or -name "*.html" | xargs tar -czf benchmark-artifacts.tar.gz
166166
167167 - name : Archive benchmarking artifacts
168- uses : actions/upload-artifact@v4
168+ uses : actions/upload-artifact@v5
169169 with :
170170 name : bench-results-${{ matrix.example }}-${{ runner.os }}-${{ matrix.ghc }}
171171 path : benchmark-artifacts.tar.gz
@@ -175,7 +175,7 @@ jobs:
175175 run : find bench-results -name "*.log" -or -name "*.hp" | xargs tar -czf benchmark-logs.tar.gz
176176
177177 - name : Archive benchmark logs
178- uses : actions/upload-artifact@v4
178+ uses : actions/upload-artifact@v6
179179 with :
180180 name : bench-logs-${{ matrix.example }}-${{ runner.os }}-${{ matrix.ghc }}
181181 path : benchmark-logs.tar.gz
0 commit comments