File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
11
11
runs-on : ubuntu-20.04
12
12
name : Build MicroPython
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v4
15
15
# Yotta has some issues with Python 3.7+
16
16
- name : Install Python 3.6
17
- uses : actions/setup-python@v3
17
+ uses : actions/setup-python@v5
18
18
with :
19
19
python-version : 3.6
20
20
- name : Install GNU Arm Embedded Toolchain (arm-none-eabi-gcc)
41
41
- run : make all
42
42
- name : Process date for artifact filename
43
43
id : date
44
- run : echo "::set-output name=date:: $(date +'%Y-%m-%d')"
44
+ run : echo "BUILD_DATE= $(date +'%Y-%m-%d')" >> $GITHUB_ENV
45
45
- name : Upload hex file
46
- uses : actions/upload-artifact@v1
46
+ uses : actions/upload-artifact@v4
47
47
with :
48
- name : microbitv1-micropython-${{ steps.date.outputs.date }}-${{ github.sha }}.hex
48
+ name : microbitv1-micropython-${{ env.BUILD_DATE }}-${{ github.sha }}.hex
49
49
path : build/firmware.hex
You can’t perform that action at this time.
0 commit comments