diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2023-01-31 22:42:29 +0100 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2023-02-01 08:50:43 +0800 |
commit | be907a66e5723ae22cc361ef4e653fd4c956397e (patch) | |
tree | 7340b9b1b44766ff7c548afeaf2282cbf15ce217 /.github | |
parent | 33842c1b60ad1a94e9bc2b56d2a0352c656135b4 (diff) | |
download | fork-ledger-be907a66e5723ae22cc361ef4e653fd4c956397e.tar.gz fork-ledger-be907a66e5723ae22cc361ef4e653fd4c956397e.tar.bz2 fork-ledger-be907a66e5723ae22cc361ef4e653fd4c956397e.zip |
Update checkout action to Node.js 16
as suggested by action warning
For more information see:
https://github.com/ledger/ledger/actions
and
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f055fa9f..6bb2eb0d 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -31,7 +31,7 @@ jobs: cmake_args: -DUSE_PYTHON=ON -DUSE_GPGME=ON } steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Check out repository code - if: runner.os == 'Linux' |