Skip to content

Commit

Permalink
ci: update actions/checkout@v3 to v4
Browse files Browse the repository at this point in the history
Updatate the "checkout" action to fix the following warning:

 Node.js 16 actions are deprecated. Please update the following
 actions to use Node.js 20: actions/checkout@v3. [...]

Signed-off-by: Jerome Forissier <[email protected]>
Acked-by: Etienne Carriere <[email protected]>
  • Loading branch information
jforissier committed Feb 6, 2024
1 parent c83a542 commit c847c2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
container: jforissier/optee_os_ci
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # full history so checkpatch can check commit IDs in commit messages
- name: Update Git config
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
restore-keys: |
builds-cache-
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- shell: bash
run: |
# build task
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
restore-keys: |
qemuv8_check-cache-
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- shell: bash
run: |
# make check task
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
restore-keys: |
qemuv8_xen_check-cache-
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- shell: bash
run: |
# make check task
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:
restore-keys: |
qemuv8_hafnium_check-cache-
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- shell: bash
run: |
# make check task
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
restore-keys: |
qemuv8_check_bti_mte_pac-cache-
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- shell: bash
run: |
# make check task
Expand Down

0 comments on commit c847c2c

Please sign in to comment.