From 8ec6888a916674839d2507953dba6113b7b7217b Mon Sep 17 00:00:00 2001 From: Dmitriy Suponitskiy Date: Fri, 8 Mar 2024 17:11:25 -0500 Subject: [PATCH] Replaced "uses: actions/checkout@v2" with \'uses: actions/checkout@v3" --- .github/workflows/custom.yml | 2 +- .github/workflows/main.yml | 6 +++--- .github/workflows/manual.yml | 18 ++++++++--------- .github/workflows/reuseable_workflow.yml | 20 +++++++++---------- .../contributing/developer_ci_cd_docs.rst | 2 +- 5 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/custom.yml b/.github/workflows/custom.yml index e32cab7e3..6ededec60 100644 --- a/.github/workflows/custom.yml +++ b/.github/workflows/custom.yml @@ -87,7 +87,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: default uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1b70bedf2..a8d22ea79 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_128 uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -40,7 +40,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_clang uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -62,7 +62,7 @@ jobs: GIT_SUBMODULE_STRATEGY: recursive steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: build_docs run: | diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 1411ce49b..7737ab3a5 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -86,7 +86,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: default uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -107,7 +107,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_debug uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -129,7 +129,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -152,7 +152,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb4_noflag uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -174,7 +174,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb4_debug uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -196,7 +196,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb4_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -219,7 +219,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb6_ntl_noflag uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -241,7 +241,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb6_ntl_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -264,7 +264,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb6_ntl_debug_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci diff --git a/.github/workflows/reuseable_workflow.yml b/.github/workflows/reuseable_workflow.yml index e77b1d010..55d3d0bd4 100644 --- a/.github/workflows/reuseable_workflow.yml +++ b/.github/workflows/reuseable_workflow.yml @@ -60,7 +60,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: default uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -79,7 +79,7 @@ jobs: if: inputs.mb2_tcm steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -101,7 +101,7 @@ jobs: if: inputs.mb2_debug steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_debug uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -123,7 +123,7 @@ jobs: if: inputs.mb4_noflag steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb4_noflag uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -144,7 +144,7 @@ jobs: if: inputs.mb4_tcm steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb4_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -166,7 +166,7 @@ jobs: if: inputs.mb4_debug steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb4_debug uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -188,7 +188,7 @@ jobs: if: inputs.mb6_ntl_noflag steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb6_ntl_noflag uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -209,7 +209,7 @@ jobs: if: inputs.mb6_ntl_tcm steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb6_ntl_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -231,7 +231,7 @@ jobs: if: inputs.mb6_ntl_debug_tcm steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb6_ntl_debug_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci @@ -252,7 +252,7 @@ jobs: runs-on: [self-hosted, Linux, X64] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_natopt uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci diff --git a/docs/assets/sphinx_rsts/contributing/developer_ci_cd_docs.rst b/docs/assets/sphinx_rsts/contributing/developer_ci_cd_docs.rst index d5c83a489..ca7c036f9 100644 --- a/docs/assets/sphinx_rsts/contributing/developer_ci_cd_docs.rst +++ b/docs/assets/sphinx_rsts/contributing/developer_ci_cd_docs.rst @@ -351,7 +351,7 @@ in the following way: if: inputs.mb2_tcm steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: mb2_tcm uses: openfheorg/openfhe-development/.github/actions/default_builder@github-ci