summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDouglas Camata <159076+douglascamata@users.noreply.github.com>2022-10-21 14:12:52 +0200
committerDouglas Camata <159076+douglascamata@users.noreply.github.com>2022-10-21 14:25:37 +0200
commit019aa3feef609af9e1f29eaeeb2d7350a6571b6f (patch)
treea5672c1cfc165df61f5aa7dbf9a7b2e535a84805 /.github/workflows
parentd140f7bfb8eecd2efe74995143227eeec4a8b49a (diff)
Upgrade cache action to avoid deprecation
The warnings are: * `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` * `The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/` * `The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/`
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7093b49..bfe0f40 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Cache west modules
- uses: actions/cache@v2
+ uses: actions/cache@v3
env:
cache-name: cache-zephyr-modules
with: