Skip to content

Commit

Permalink
ci: Update actions/checkout to v4
Browse files Browse the repository at this point in the history
Fixes the following warnings in Actions:

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

Signed-off-by: Tim Crawford <[email protected]>
  • Loading branch information
crawfxrd authored and jackpot51 committed Mar 18, 2024
1 parent 16e4f93 commit 6aced2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
outputs:
boards: ${{ steps.board-matrix.outputs.boards }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: ./scripts/deps.sh
Expand All @@ -37,7 +37,7 @@ jobs:

runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: ./scripts/deps.sh
Expand All @@ -54,7 +54,7 @@ jobs:
# TODO: Conditionally build based on files changed?

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: ./scripts/deps.sh
Expand Down

0 comments on commit 6aced2f

Please sign in to comment.