diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-10-12 15:24:11 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-10-12 16:47:46 +0200 |
commit | 87c69d73bb4021bf3a26217b3a652ce262637b1e (patch) | |
tree | 82f85cca30bdb4d660cece5c3ed851530ed1c900 /.github/workflows/tools.yml | |
parent | cd93980abb0c6452fd3e9c1213caaf26d221fcd4 (diff) |
CI: bump actions/checkout action to v3
Bump actions/checkout action to v3 on every workflow to mute node
deprecation warning.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to '.github/workflows/tools.yml')
-rw-r--r-- | .github/workflows/tools.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index f483615363..2661782f42 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: openwrt @@ -102,7 +102,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: 'openwrt' @@ -175,7 +175,7 @@ jobs: echo "OWNER_LC=${OWNER,,}" >> "$GITHUB_ENV" - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: 'openwrt' |