aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-11 07:17:35 -0700
committerGitHub <noreply@github.com>2023-09-11 07:17:35 -0700
commit4e75260bad63a5c9a80cfff8d599f1e817c036e8 (patch)
tree95162fb29765bebcf10df16c264d72c023d30cac
parenta8f25b703236d20997b9c41e0e736364556167bb (diff)
downloadot-br-posix-4e75260bad63a5c9a80cfff8d599f1e817c036e8.tar.gz
github-actions: bump actions/checkout from 3 to 4 (#2009)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r--.github/workflows/border_router.yml2
-rw-r--r--.github/workflows/build.yml14
-rw-r--r--.github/workflows/docker.yml4
-rw-r--r--.github/workflows/documentation.yml2
-rw-r--r--.github/workflows/macOS.yml2
-rw-r--r--.github/workflows/meshcop.yml2
-rw-r--r--.github/workflows/openwrt.yml2
-rw-r--r--.github/workflows/raspbian.yml2
8 files changed, 15 insertions, 15 deletions
diff --git a/.github/workflows/border_router.yml b/.github/workflows/border_router.yml
index e2c87d31..591853cc 100644
--- a/.github/workflows/border_router.yml
+++ b/.github/workflows/border_router.yml
@@ -122,7 +122,7 @@ jobs:
NAT64: ${{ matrix.nat64 }}
MAX_JOBS: 3
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Get Border Router Test ID
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 195c26e5..01e02e4d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -45,7 +45,7 @@ jobs:
pretty:
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Bootstrap
run: BUILD_TARGET=pretty-check tests/scripts/bootstrap.sh
- name: Check
@@ -65,7 +65,7 @@ jobs:
OTBR_OPTIONS: "-DOTBR_SRP_ADVERTISING_PROXY=ON -DOTBR_BORDER_ROUTING=ON -DOTBR_NAT64=1 -DOTBR_SRP_SERVER_AUTO_ENABLE=OFF"
OTBR_COVERAGE: 1
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
@@ -88,7 +88,7 @@ jobs:
OTBR_OPTIONS: "-DOTBR_SRP_ADVERTISING_PROXY=ON -DOTBR_DNSSD_DISCOVERY_PROXY=ON"
OTBR_COVERAGE: 1
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
@@ -104,7 +104,7 @@ jobs:
BUILD_TARGET: script-check
OTBR_COVERAGE: 1
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
@@ -121,7 +121,7 @@ jobs:
CC: clang
CXX: clang++
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
@@ -134,7 +134,7 @@ jobs:
env:
BUILD_TARGET: package
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
@@ -151,7 +151,7 @@ jobs:
env:
BUILD_TARGET: check
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 9c794b11..91eb9111 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -53,7 +53,7 @@ jobs:
OTBR_COVERAGE: 1
VERBOSE: 1
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
@@ -106,7 +106,7 @@ jobs:
platforms: "linux/amd64,linux/arm/v7,linux/arm64"
push: no
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml
index 127b54b3..639ba7b4 100644
--- a/.github/workflows/documentation.yml
+++ b/.github/workflows/documentation.yml
@@ -43,7 +43,7 @@ jobs:
env:
BUILD_TARGET: check
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml
index 0a314026..46f98939 100644
--- a/.github/workflows/macOS.yml
+++ b/.github/workflows/macOS.yml
@@ -44,7 +44,7 @@ jobs:
build-check:
runs-on: macos-12
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
diff --git a/.github/workflows/meshcop.yml b/.github/workflows/meshcop.yml
index 5837f4f7..e3aaae56 100644
--- a/.github/workflows/meshcop.yml
+++ b/.github/workflows/meshcop.yml
@@ -49,7 +49,7 @@ jobs:
matrix:
mdns: ["avahi"]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
diff --git a/.github/workflows/openwrt.yml b/.github/workflows/openwrt.yml
index 273142ae..04eaa6ff 100644
--- a/.github/workflows/openwrt.yml
+++ b/.github/workflows/openwrt.yml
@@ -44,7 +44,7 @@ jobs:
openwrt:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: true
- name: Bootstrap
diff --git a/.github/workflows/raspbian.yml b/.github/workflows/raspbian.yml
index c878aaab..47a14909 100644
--- a/.github/workflows/raspbian.yml
+++ b/.github/workflows/raspbian.yml
@@ -48,7 +48,7 @@ jobs:
IMAGE_URL: https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2021-01-12/2021-01-11-raspios-buster-armhf-lite.zip
BUILD_TARGET: raspbian-gcc
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
submodules: recursive
- name: Bootstrap