Skip to content

Commit d0dc76c

Browse files
JohnAZoidbergkiram9
authored andcommitted
hx20/hx30: Update github actions
BRANCH=fwk-hx20-hx30-4410 TEST=Action run stops failing, see below BUG=upload-artifact v2 is deprecated and the action runs are failing. Currently we're seeing the below failure: > Error: This request has been automatically failed because it uses a > deprecated version of `actions/upload-artifact: v2`. Learn more: > https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 260221d commit d0dc76c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/hx20.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: sudo apt install gcc-arm-none-eabi libftdi1-dev
1313
# Checks out a copy of your repository on the ubuntu-latest machine
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: build hx20 board
1717
env:
1818
BOARD: hx20
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
echo "VERSIONINFO=$(date -u +'%Y-%m-%d-%H-%M-%S')_$GITHUB_SHA" >> $GITHUB_ENV
2727
28-
- uses: actions/upload-artifact@v2
28+
- uses: actions/upload-artifact@v4
2929
with:
3030
name: hx20.${{ env.VERSIONINFO }}.bin
3131
path: build/hx20/ec.bin

.github/workflows/hx30.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: sudo apt install gcc-arm-none-eabi libftdi1-dev
1313
# Checks out a copy of your repository on the ubuntu-latest machine
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: build hx30 board
1717
env:
1818
BOARD: hx30
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
echo "VERSIONINFO=$(date -u +'%Y-%m-%d-%H-%M-%S')_$GITHUB_SHA" >> $GITHUB_ENV
2727
28-
- uses: actions/upload-artifact@v2
28+
- uses: actions/upload-artifact@v4
2929
with:
3030
name: hx30.${{ env.VERSIONINFO }}.bin
3131
path: build/hx30/ec.bin

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-20.04
1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- name: get checkpatch

0 commit comments

Comments
 (0)