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>
This commit is contained in:
parent
cd93980abb
commit
87c69d73bb
|
@ -14,7 +14,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set lower case owner name
|
- name: Set lower case owner name
|
||||||
id: lower_owner
|
id: lower_owner
|
||||||
|
@ -83,30 +83,30 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout master directory
|
- name: Checkout master directory
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: openwrt
|
path: openwrt
|
||||||
|
|
||||||
- name: Checkout packages feed
|
- name: Checkout packages feed
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: openwrt/packages
|
repository: openwrt/packages
|
||||||
path: openwrt/feeds/packages
|
path: openwrt/feeds/packages
|
||||||
|
|
||||||
- name: Checkout luci feed
|
- name: Checkout luci feed
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: openwrt/luci
|
repository: openwrt/luci
|
||||||
path: openwrt/feeds/luci
|
path: openwrt/feeds/luci
|
||||||
|
|
||||||
- name: Checkout routing feed
|
- name: Checkout routing feed
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: openwrt/routing
|
repository: openwrt/routing
|
||||||
path: openwrt/feeds/routing
|
path: openwrt/feeds/routing
|
||||||
|
|
||||||
- name: Checkout telephony feed
|
- name: Checkout telephony feed
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: openwrt/telephony
|
repository: openwrt/telephony
|
||||||
path: openwrt/feeds/telephony
|
path: openwrt/feeds/telephony
|
||||||
|
|
|
@ -20,7 +20,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: openwrt
|
path: openwrt
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: 'openwrt'
|
path: 'openwrt'
|
||||||
|
|
||||||
|
@ -175,7 +175,7 @@ jobs:
|
||||||
echo "OWNER_LC=${OWNER,,}" >> "$GITHUB_ENV"
|
echo "OWNER_LC=${OWNER,,}" >> "$GITHUB_ENV"
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
path: 'openwrt'
|
path: 'openwrt'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue