Skip to content

Commit 359fd6b

Browse files
ci: Update actions to resolve job run failure. (#807)
1 parent 8c7cc72 commit 359fd6b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff 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)
@@ -41,9 +41,9 @@ jobs:
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

0 commit comments

Comments
 (0)