diff --git a/.github/workflows/build-arm64-image.yaml b/.github/workflows/build-arm64-image.yaml index 422a696abc4..74732783822 100644 --- a/.github/workflows/build-arm64-image.yaml +++ b/.github/workflows/build-arm64-image.yaml @@ -26,7 +26,7 @@ jobs: name: Build arm64 runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - uses: docker/setup-qemu-action@v2 with: diff --git a/.github/workflows/build-dpdk-image.yaml b/.github/workflows/build-dpdk-image.yaml index 0b7ff4d99a6..4711d957019 100644 --- a/.github/workflows/build-dpdk-image.yaml +++ b/.github/workflows/build-dpdk-image.yaml @@ -6,7 +6,7 @@ jobs: name: Build DPDK runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - name: Build diff --git a/.github/workflows/build-kube-ovn-base-dpdk.yaml b/.github/workflows/build-kube-ovn-base-dpdk.yaml index 6a80ae690c8..daaae78ca89 100644 --- a/.github/workflows/build-kube-ovn-base-dpdk.yaml +++ b/.github/workflows/build-kube-ovn-base-dpdk.yaml @@ -6,7 +6,7 @@ jobs: name: Build AMD64 runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - name: Build @@ -26,7 +26,7 @@ jobs: name: push runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download image uses: actions/download-artifact@v3 diff --git a/.github/workflows/build-kube-ovn-base.yaml b/.github/workflows/build-kube-ovn-base.yaml index 60f6e31e36e..226b01d2c90 100644 --- a/.github/workflows/build-kube-ovn-base.yaml +++ b/.github/workflows/build-kube-ovn-base.yaml @@ -17,7 +17,7 @@ jobs: name: Build AMD64 runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} - uses: docker/setup-buildx-action@v2 @@ -45,7 +45,7 @@ jobs: name: Build ARM64 runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} - uses: docker/setup-buildx-action@v2 @@ -79,7 +79,7 @@ jobs: name: push runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} - name: Download image diff --git a/.github/workflows/build-kube-ovn-test.yaml b/.github/workflows/build-kube-ovn-test.yaml index e310e9abb2f..3eb436b2e5c 100644 --- a/.github/workflows/build-kube-ovn-test.yaml +++ b/.github/workflows/build-kube-ovn-test.yaml @@ -9,7 +9,7 @@ jobs: name: Build Test runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - uses: actions/setup-go@v4 with: diff --git a/.github/workflows/build-windows.yaml b/.github/workflows/build-windows.yaml index bfa6cfebbfd..b1cf168da6b 100644 --- a/.github/workflows/build-windows.yaml +++ b/.github/workflows/build-windows.yaml @@ -33,7 +33,7 @@ jobs: build-ovs-ovn: ${{ steps.filter.outputs.windows-ovs-ovn }} build-kube-ovn: ${{ steps.filter.outputs.windows-kube-ovn }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -83,14 +83,14 @@ jobs: git clone https://git.code.sf.net/p/pthreads4w/code pthreads4w\code - name: Check out OVS - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: openvswitch/ovs ref: branch-3.1 path: ovs - name: Check out OVN - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ovn-org/ovn ref: branch-22.12 @@ -183,7 +183,7 @@ jobs: runs-on: windows-2019 if: github.event_name == 'release' || github.event_name == 'workflow_dispatch' || needs.filter.outputs.build-kube-ovn == 'true' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -234,7 +234,7 @@ jobs: - build-kube-ovn runs-on: windows-2019 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download Kube-OVN binaries uses: actions/download-artifact@v3 diff --git a/.github/workflows/build-x86-image.yaml b/.github/workflows/build-x86-image.yaml index cdff3209803..82076f509a6 100644 --- a/.github/workflows/build-x86-image.yaml +++ b/.github/workflows/build-x86-image.yaml @@ -33,7 +33,7 @@ jobs: outputs: build-base: ${{ steps.build.outputs.build-base }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 2 @@ -74,7 +74,7 @@ jobs: runs-on: ubuntu-22.04 needs: build-kube-ovn-base steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - uses: actions/setup-go@v4 with: @@ -144,7 +144,7 @@ jobs: name: Build vpc-nat-gateway runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build run: | @@ -161,7 +161,7 @@ jobs: name: Build centos-compile runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2 - name: Build @@ -186,7 +186,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -194,7 +194,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -241,7 +241,7 @@ jobs: outputs: test-netpol: ${{ steps.filter.outputs.kube-ovn-controller }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -287,7 +287,7 @@ jobs: - overlay - underlay steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -295,7 +295,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -437,7 +437,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -445,7 +445,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -583,7 +583,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -591,7 +591,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -728,7 +728,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -736,7 +736,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -849,7 +849,7 @@ jobs: - overlay - underlay steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -857,7 +857,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -993,7 +993,7 @@ jobs: - dual timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1001,7 +1001,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1086,7 +1086,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install kind uses: helm/kind-action@v1.8.0 @@ -1122,7 +1122,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install kind uses: helm/kind-action@v1.8.0 @@ -1158,7 +1158,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install kind uses: helm/kind-action@v1.8.0 @@ -1196,7 +1196,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install kind uses: helm/kind-action@v1.8.0 @@ -1237,7 +1237,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1245,7 +1245,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1326,7 +1326,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1334,7 +1334,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1409,7 +1409,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1417,7 +1417,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1503,7 +1503,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install kind uses: helm/kind-action@v1.8.0 @@ -1554,7 +1554,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: azure/setup-helm@v3 with: version: '${{ env.HELM_VERSION }}' @@ -1565,7 +1565,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1675,7 +1675,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1683,7 +1683,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1779,7 +1779,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 60 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1787,7 +1787,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1861,7 +1861,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1869,7 +1869,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -1950,7 +1950,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create the default branch directory if: (github.base_ref || github.ref_name) != github.event.repository.default_branch @@ -1958,7 +1958,7 @@ jobs: - name: Check out the default branch if: (github.base_ref || github.ref_name) != github.event.repository.default_branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.repository.default_branch }} fetch-depth: 1 @@ -2050,7 +2050,7 @@ jobs: if: always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download kube-ovn image uses: actions/download-artifact@v3 diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index 2eaa430e14d..4bb1909de50 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest name: Generate changelog steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: master fetch-depth: 0 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 0380365be2c..69fb8a7c966 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 6e80ac79834..a9df9406e8c 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -20,7 +20,7 @@ jobs: name: lint runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 854468c2839..fd2d7c3d404 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -13,7 +13,7 @@ jobs: name: Publish Images runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Publish env: diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index 12c872631b7..bc7b546a897 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 diff --git a/.github/workflows/scheduled-e2e.yaml b/.github/workflows/scheduled-e2e.yaml index e119b5faae3..a4c2fc40d95 100644 --- a/.github/workflows/scheduled-e2e.yaml +++ b/.github/workflows/scheduled-e2e.yaml @@ -35,7 +35,7 @@ jobs: - overlay - underlay steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Remove DNS search domain run: | @@ -65,7 +65,7 @@ jobs: run: mkdir -p test/e2e/k8s-network/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -121,7 +121,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Remove DNS search domain run: | @@ -151,7 +151,7 @@ jobs: run: mkdir -p test/e2e/k8s-network/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -203,7 +203,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Remove DNS search domain run: | @@ -233,7 +233,7 @@ jobs: run: mkdir -p test/e2e/k8s-network/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -285,7 +285,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Remove DNS search domain run: | @@ -296,7 +296,7 @@ jobs: run: mkdir -p test/e2e/k8s-network/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -347,7 +347,7 @@ jobs: - overlay - underlay steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -371,7 +371,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -423,7 +423,7 @@ jobs: - release-1.11 - release-1.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -447,7 +447,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -497,13 +497,13 @@ jobs: - release-1.11 - release-1.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create branch directory run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -548,13 +548,13 @@ jobs: - release-1.11 - release-1.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create branch directory run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -601,13 +601,13 @@ jobs: - release-1.11 - release-1.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create branch directory run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -653,7 +653,7 @@ jobs: - release-1.12 - release-1.11 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: @@ -678,7 +678,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -725,7 +725,7 @@ jobs: - master - release-1.12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: @@ -750,7 +750,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -796,7 +796,7 @@ jobs: - master - release-1.12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: @@ -821,7 +821,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -869,13 +869,13 @@ jobs: - release-1.11 - release-1.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create branch directory run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -919,7 +919,7 @@ jobs: - release-1.11 - release-1.9 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: azure/setup-helm@v3 with: version: '${{ env.HELM_VERSION }}' @@ -952,7 +952,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -1016,7 +1016,7 @@ jobs: - ipv6 - dual steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -1040,7 +1040,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -1100,7 +1100,7 @@ jobs: - release-1.11 => master - release-1.12 => master steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: azure/setup-helm@v3 with: version: '${{ env.HELM_VERSION }}' @@ -1134,13 +1134,13 @@ jobs: - name: Create branch directory run: mkdir -p test/e2e/kube-ovn/branches - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.VERSION_FROM }} fetch-depth: 1 path: test/e2e/kube-ovn/branches/${{ env.VERSION_FROM }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ env.VERSION_TO }} fetch-depth: 1 @@ -1198,13 +1198,13 @@ jobs: - master - release-1.12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create branch directory run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -1256,7 +1256,7 @@ jobs: - master - release-1.12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -1280,7 +1280,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1 @@ -1326,7 +1326,7 @@ jobs: - master - release-1.12 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version: ${{ env.GO_VERSION || '' }} @@ -1350,7 +1350,7 @@ jobs: run: mkdir -p test/e2e/kube-ovn/branches/${{ matrix.branch }} - name: Check out branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ matrix.branch }} fetch-depth: 1