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