File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ jobs:
31
31
- id : set-libs
32
32
name : Set libs var for matrix
33
33
# # call bb script directly instead of as task to avoid task status output
34
- run : echo "::set-output name= libs:: $(bb script/test_libs.clj list --format=json)"
34
+ run : echo "libs= $(bb script/test_libs.clj list --format=json)" >> $GITHUB_OUTPUT
35
35
36
36
libs-test :
37
37
needs : enumerate-libs
38
38
runs-on : ubuntu-latest
39
39
strategy :
40
40
fail-fast : false
41
41
matrix :
42
- lib : ${{fromJSON(needs.enumerate-libs.outputs.libs)}}
42
+ lib : ${{ fromJSON(needs.enumerate-libs.outputs.libs) }}
43
43
44
44
steps :
45
45
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 68
68
run : bb ci-release commit
69
69
70
70
- name : Make GitHub Actions aware of target version tag
71
- run : echo "::set-output name= tag:: v$(clojure -T:build built-version)"
71
+ run : echo "tag= v$(clojure -T:build built-version)" >> $GITHUB_OUTPUT
72
72
id : target-version
73
73
74
74
- name : Create GitHub release (step 4 of 4)
Original file line number Diff line number Diff line change @@ -40,15 +40,15 @@ jobs:
40
40
- id : set-tests
41
41
name : Set test var for matrix
42
42
# run test.clj directly instead of via bb task to avoid generic task output
43
- run : echo "::set-output name= tests:: $(bb script/ci_unit_tests.clj matrix-for-ci --format=json)"
43
+ run : echo "tests= $(bb script/ci_unit_tests.clj matrix-for-ci --format=json)" >> $GITHUB_OUTPUT
44
44
45
45
build :
46
46
needs : setup
47
47
runs-on : ${{ matrix.os }}-latest
48
48
strategy :
49
49
fail-fast : false
50
50
matrix :
51
- include : ${{fromJSON(needs.setup.outputs.tests)}}
51
+ include : ${{ fromJSON(needs.setup.outputs.tests) }}
52
52
53
53
name : ${{ matrix.desc }}
54
54
You can’t perform that action at this time.
0 commit comments