File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v2
18
+ uses : actions/checkout@v3
19
19
with :
20
20
# just fetching 1 commit is not enough for setuptools-scm, so we fetch all
21
21
fetch-depth : 0
Original file line number Diff line number Diff line change 6
6
tests :
7
7
runs-on : ubuntu-20.04
8
8
steps :
9
- - uses : actions/checkout@v2
9
+ - uses : actions/checkout@v3
10
10
with :
11
11
fetch-depth : 1
12
12
36
36
make
37
37
export OUTDIR=$PWD/build-standard
38
38
export PATH=$PATH:$OUTDIR
39
- echo "::set-output name= bin_dir:: $OUTDIR"
39
+ echo "bin_dir= $OUTDIR" >> $GITHUB_OUTPUT
40
40
test $(micropython -c 'print("test")') = "test"
41
41
popd
42
42
56
56
make
57
57
make install-strip
58
58
export PATH=$PATH:$PWD/dist/bin
59
- echo "::set-output name= bin_dir:: $PWD/dist/bin"
59
+ echo "bin_dir= $PWD/dist/bin" >> $GITHUB_OUTPUT
60
60
esp32ulp-elf-as --version | grep 'esp32ulp-elf' > /dev/null
61
61
popd
62
62
You can’t perform that action at this time.
0 commit comments