File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 14
14
test :
15
15
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16
16
runs-on : ${{ matrix.os }}
17
+ permissions : # needed for julia-actions/cache delete old caches that it has created
18
+ actions : write
19
+ contents : read
17
20
continue-on-error : ${{ matrix.version == 'nightly' }}
18
21
strategy :
19
22
fail-fast : false
@@ -28,10 +31,10 @@ jobs:
28
31
arch :
29
32
- x64
30
33
steps :
31
- - name : Set JULIA_DEBUG environment variable
34
+ - name : Set JULIA_DEBUG environment variable if applicable
32
35
if : ${{ runner.debug == '1' }}
33
36
run : echo "JULIA_DEBUG=ModelPredictiveControl" >> $GITHUB_ENV
34
- - uses : actions/checkout@v2
37
+ - uses : actions/checkout@v4
35
38
- uses : julia-actions/setup-julia@v2
36
39
with :
37
40
version : ${{ matrix.version }}
You can’t perform that action at this time.
0 commit comments