From 1d8feba460c6aec6d2d46173835766ed825808d5 Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Mon, 17 Oct 2022 17:22:34 +0200 Subject: [PATCH] github: Silence the warning about node 12 deprecation The workflow was inconsistent with usage of actions/checkout. The first checkout used v3, whereas the next two - v2. These are the same, but v3 runs on currently supported node 16. Using v2 emits warnings. To avoid them, update the action versions to v3. --- .../.github/workflows/update-packages-from-list.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk_container/src/third_party/portage-stable/.github/workflows/update-packages-from-list.yml b/sdk_container/src/third_party/portage-stable/.github/workflows/update-packages-from-list.yml index bd37908886..043cd59bf8 100644 --- a/sdk_container/src/third_party/portage-stable/.github/workflows/update-packages-from-list.yml +++ b/sdk_container/src/third_party/portage-stable/.github/workflows/update-packages-from-list.yml @@ -14,13 +14,13 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} path: ./portage-stable - name: Checkout Gentoo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: gentoo/gentoo path: gentoo fetch-depth: 0 - name: Checkout build scripts - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: flatcar/flatcar-build-scripts ref: krnowak/stuff