diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-10-12 15:24:11 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-04 17:36:57 +0100 |
commit | 69414201aeaf25e6363c490ae4ecd60bd454949d (patch) | |
tree | 91782f1d829826c2d9bc00d9bc45e369a4077228 /.github/workflows/tools.yml | |
parent | 8c4e39eb0824c560a1176439a92e7383f8891d11 (diff) | |
download | upstream-69414201aeaf25e6363c490ae4ecd60bd454949d.tar.gz upstream-69414201aeaf25e6363c490ae4ecd60bd454949d.tar.bz2 upstream-69414201aeaf25e6363c490ae4ecd60bd454949d.zip |
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>
(cherry picked from commit 87c69d73bb4021bf3a26217b3a652ce262637b1e)
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' |