Skip to content

Commit 519e3b7

Browse files
Merge pull request #546 from dgarske/fix_actions
Fix GitHub Action version (v3 is removed 2025-01-30)
2 parents dd11330 + 422ba9d commit 519e3b7

19 files changed

Lines changed: 31 additions & 31 deletions

.github/workflows/build-keytools-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
# Step 1: Checkout the repository
1616
- name: Checkout Code
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
submodules: true
2020

@@ -31,7 +31,7 @@ jobs:
3131
3232
# Step 4: Upload executables as artifacts
3333
- name: Upload EXE Artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: windows-keytools
3737
path: |

.github/workflows/test-build-lms.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
submodules: true
2626

.github/workflows/test-build-mcux-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
submodules: true
2626

.github/workflows/test-build-sim-tpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
make
4141
./tpm_server &
4242
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444
with:
4545
submodules: true
4646

.github/workflows/test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-24.04
2121

2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
submodules: true
2626

.github/workflows/test-custom-tlv-simulator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717

@@ -34,7 +34,7 @@ jobs:
3434
- name: Sign the image with a custom TLV
3535
run: |
3636
tools/keytools/sign --ed25519 --custom-tlv-buffer 0x0034 AABBCCDDEEFF0011223344 test-app/image.elf wolfboot_signing_private_key.der 1
37-
37+
3838
- name: Re-assemble the internal_flash.dd image file
3939
run: |
4040
make assemble_internal_flash.dd

.github/workflows/test-keytools-msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
git config --global core.autocrlf input
2727
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
with:
3030
submodules: true
3131

.github/workflows/test-keytools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
submodules: true
1818

@@ -236,7 +236,7 @@ jobs:
236236
- name: Delete generated key
237237
run: |
238238
rm -f wolfboot_signing_private_key.der
239-
239+
240240
- name: Remove generated keystore
241241
run: |
242242
rm -f src/keystore.c

.github/workflows/test-parse-tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
submodules: true
1818

.github/workflows/test-powerfail-simulator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717

0 commit comments

Comments
 (0)