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.
This commit is contained in:
Krzesimir Nowak 2022-10-17 17:22:34 +02:00
parent 261210fe09
commit 1d8feba460

View File

@ -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