diff options
| author | Douglas Camata <159076+douglascamata@users.noreply.github.com> | 2022-10-21 14:22:33 +0200 |
|---|---|---|
| committer | Douglas Camata <159076+douglascamata@users.noreply.github.com> | 2022-10-21 14:25:57 +0200 |
| commit | 75f8abf03d20d27e3fb43cb9d6ef71fd31a5487b (patch) | |
| tree | e2a88d6f597dedb9628c263b388d3e338c1a33e3 | |
| parent | 019aa3feef609af9e1f29eaeeb2d7350a6571b6f (diff) | |
Upgrade checkout action to avoid deprecation
* `Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout, actions/cache, actions/upload-artifact, actions/cache, actions/checkout`
Signed-off-by: Douglas Camata <159076+douglascamata@users.noreply.github.com>
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfe0f40..a629c35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: name: Build steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache west modules uses: actions/cache@v3 env: |
