File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 29
29
GH_TOKEN : ${{ secrets.GH_TOKEN }}
30
30
31
31
steps :
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
- name : Check and build
34
34
run : docker run --rm -v ${PWD}:/module -e "GH_TOKEN=$GH_TOKEN" bitcraze/builder ./tools/build/build $PLATFORM
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ jobs:
26
26
PLATFORM : ${{ matrix.platform }}
27
27
28
28
steps :
29
- - uses : actions/checkout@v3
29
+ - uses : actions/checkout@v4
30
30
31
31
- name : Check and build
32
32
env :
33
33
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34
34
run : docker run --rm -v ${PWD}:/module -e "GH_TOKEN=$GITHUB_TOKEN" bitcraze/builder ./tools/build/build $PLATFORM nightly-experiment
35
35
- name : Upload Build Artifact
36
- uses : actions/upload-artifact@v3
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
38
name : nightly-experiment
39
39
path : firmware-${{ matrix.platform }}-nightly-experiment.zip
Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ jobs:
25
25
PLATFORM : ${{ matrix.platform }}
26
26
27
27
steps :
28
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
29
29
30
30
- name : Check and build
31
31
env :
32
32
GH_TOKEN : ${{ secrets.GH_TOKEN }}
33
33
run : docker run --rm -v ${PWD}:/module -e "GH_TOKEN=$GH_TOKEN" bitcraze/builder ./tools/build/build $PLATFORM nightly
34
34
35
35
- name : Upload Build Artifact
36
- uses : actions/upload-artifact@v3
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
38
name : nightly
39
39
path : firmware-${{ matrix.platform }}-nightly.zip
Original file line number Diff line number Diff line change 28
28
- name : Release URL on file
29
29
run : echo "${{ steps.create_release.outputs.upload_url }}" > release_url.txt
30
30
- name : Save Release URL File For Uploading Files
31
- uses : actions/upload-artifact@v3
31
+ uses : actions/upload-artifact@v4
32
32
with :
33
33
name : release_url
34
34
path : release_url.txt
@@ -44,15 +44,15 @@ jobs:
44
44
45
45
steps :
46
46
- name : Checkout Repo
47
- uses : actions/checkout@v3
47
+ uses : actions/checkout@v4
48
48
with :
49
49
submodules : true
50
50
51
51
- name : Build
52
52
run : docker run --rm -v ${PWD}:/module bitcraze/builder bash -c "./tools/build/build ${{ matrix.platform }}"
53
53
54
54
- name : Load Release URL File from release job
55
- uses : actions/download-artifact@v3
55
+ uses : actions/download-artifact@v4
56
56
with :
57
57
name : release_url
58
58
You can’t perform that action at this time.
0 commit comments