mirror of
https://github.com/flatcar/scripts.git
synced 2025-10-01 10:31:37 +02:00
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:
parent
261210fe09
commit
1d8feba460
@ -14,13 +14,13 @@ jobs:
|
|||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
path: ./portage-stable
|
path: ./portage-stable
|
||||||
- name: Checkout Gentoo
|
- name: Checkout Gentoo
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: gentoo/gentoo
|
repository: gentoo/gentoo
|
||||||
path: gentoo
|
path: gentoo
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Checkout build scripts
|
- name: Checkout build scripts
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: flatcar/flatcar-build-scripts
|
repository: flatcar/flatcar-build-scripts
|
||||||
ref: krnowak/stuff
|
ref: krnowak/stuff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user