diff --git a/.github/workflows/all-tests.yml b/.github/workflows/all-tests.yml index 6494c7e6a..ec2407c64 100644 --- a/.github/workflows/all-tests.yml +++ b/.github/workflows/all-tests.yml @@ -24,6 +24,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.ACCEPTANCE_TESTS_TOKEN }} - name: Prepare Worker uses: ./.github/actions/prepare-worker - name: Run Acceptance Tests @@ -55,6 +58,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.ACCEPTANCE_TESTS_TOKEN }} - name: Prepare Worker uses: ./.github/actions/prepare-worker - name: Run Type Mapping Tests @@ -86,6 +92,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.ACCEPTANCE_TESTS_TOKEN }} - name: Prepare Worker uses: ./.github/actions/prepare-worker - name: Run External Libraries Tests diff --git a/.github/workflows/publish-plugin.yaml b/.github/workflows/publish-plugin.yaml index 41d9c78a0..67d005763 100644 --- a/.github/workflows/publish-plugin.yaml +++ b/.github/workflows/publish-plugin.yaml @@ -17,6 +17,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.ACCEPTANCE_TESTS_TOKEN }} - uses: actions/setup-java@v2 with: distribution: adopt diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index 9bfeead58..eb63c0a94 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -82,6 +82,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.ACCEPTANCE_TESTS_TOKEN }} - name: Prepare Worker uses: ./.github/actions/prepare-worker - name: Run Type Mapping Tests @@ -110,6 +113,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + with: + submodules: true + token: ${{ secrets.ACCEPTANCE_TESTS_TOKEN }} - name: Prepare Worker uses: ./.github/actions/prepare-worker - name: Run External Libraries Tests