Skip to content

Commit

Permalink
CI: bump actions/checkout action to v3
Browse files Browse the repository at this point in the history
Bump actions/checkout action to v3 on every workflow to mute node
deprecation warning.

Signed-off-by: Christian Marangi <[email protected]>
  • Loading branch information
Ansuel committed Oct 12, 2022
1 parent cd93980 commit 87c69d7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/formal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set lower case owner name
id: lower_owner
Expand Down Expand Up @@ -83,30 +83,30 @@ jobs:

steps:
- name: Checkout master directory
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: openwrt

- name: Checkout packages feed
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: openwrt/packages
path: openwrt/feeds/packages

- name: Checkout luci feed
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: openwrt/luci
path: openwrt/feeds/luci

- name: Checkout routing feed
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: openwrt/routing
path: openwrt/feeds/routing

- name: Checkout telephony feed
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: openwrt/telephony
path: openwrt/feeds/telephony
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: openwrt

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'openwrt'

Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
echo "OWNER_LC=${OWNER,,}" >> "$GITHUB_ENV"
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'openwrt'

Expand Down

0 comments on commit 87c69d7

Please sign in to comment.