From 70420f05c39505170b2356b96226626557d6b023 Mon Sep 17 00:00:00 2001 From: mbruzda Date: Fri, 15 Dec 2023 16:38:03 +0100 Subject: [PATCH] chore: fix pointers to branch --- .../workflows/reusable-build-test-release.yml | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/reusable-build-test-release.yml b/.github/workflows/reusable-build-test-release.yml index 6eaa04576..063cac367 100644 --- a/.github/workflows/reusable-build-test-release.yml +++ b/.github/workflows/reusable-build-test-release.yml @@ -206,7 +206,7 @@ jobs: statuses: write steps: - name: Run title validation - uses: splunk/addonfactory-workflow-addon-release/.github/actions/validate-pr-title@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/validate-pr-title@deps/update_first_4 with: GITHUB_TOKEN: ${{ github.token }} @@ -234,7 +234,7 @@ jobs: steps: - name: Run meta preparation id: meta - uses: splunk/addonfactory-workflow-addon-release/.github/actions/meta@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/meta@deps/update_first_4 with: SA_GH_USER_NAME: ${{ secrets.SA_GH_USER_NAME }} SA_GH_USER_EMAIL: ${{ secrets.SA_GH_USER_EMAIL }} @@ -249,7 +249,7 @@ jobs: if: ${{ needs.setup-workflow.outputs.skip-workflow != 'Yes' }} steps: - name: Run FOSSA scan - uses: splunk/addonfactory-workflow-addon-release/.github/actions/fossa-scan@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/fossa-scan@deps/update_first_4 with: FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }} @@ -261,7 +261,7 @@ jobs: - fossa-scan steps: - name: Run FOSSA test - uses: splunk/addonfactory-workflow-addon-release/.github/actions/fossa-test@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/fossa-test@deps/update_first_4 with: FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }} @@ -273,7 +273,7 @@ jobs: if: ${{ needs.setup-workflow.outputs.skip-workflow != 'Yes' }} steps: - name: Run compliance copyrights - uses: splunk/addonfactory-workflow-addon-release/.github/actions/compliance-copyrights@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/compliance-copyrights@deps/update_first_4 lint: name: Lint @@ -283,7 +283,7 @@ jobs: if: ${{ needs.setup-workflow.outputs.skip-workflow != 'Yes' }} steps: - name: Run linting checks - uses: splunk/addonfactory-workflow-addon-release/.github/actions/lint@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/lint@deps/update_first_4 review-secrets: name: Review secrets @@ -293,7 +293,7 @@ jobs: if: ${{ needs.setup-workflow.outputs.skip-workflow != 'Yes' }} steps: - name: Run secrets review - uses: splunk/addonfactory-workflow-addon-release/.github/actions/review-secrets@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/review-secrets@deps/update_first_4 semgrep: name: Semgrep security check @@ -303,7 +303,7 @@ jobs: if: ${{ needs.setup-workflow.outputs.skip-workflow != 'Yes' }} steps: - name: Run semgrep - uses: splunk/addonfactory-workflow-addon-release/.github/actions/semgrep@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/semgrep@deps/update_first_4 with: SEMGREP_PUBLISH_TOKEN: ${{ secrets.SEMGREP_PUBLISH_TOKEN }} @@ -325,7 +325,7 @@ jobs: steps: - name: Run test inventory check id: test-inventory - uses: splunk/addonfactory-workflow-addon-release/.github/actions/test-inventory@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/test-inventory@deps/update_first_4 # Two separate unit test jobs needed as jobs that depend on unit-test success can't proceed # if any matrix job fails. Currently python 3.9 may fail as it's not supported in all TAs. @@ -347,7 +347,7 @@ jobs: steps: - name: Run unit tests for python 3.7 id: unit-tests-3_7 - uses: splunk/addonfactory-workflow-addon-release/.github/actions/unit-tests@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/unit-tests@deps/update_first_4 with: python_version: '3.7' GH_TOKEN_ADMIN: ${{ secrets.GH_TOKEN_ADMIN }} @@ -369,7 +369,7 @@ jobs: steps: - name: Run unit tests for python 3.9 id: unit-tests-3_9 - uses: splunk/addonfactory-workflow-addon-release/.github/actions/unit-tests@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/unit-tests@deps/update_first_4 with: python_version: '3.9' GH_TOKEN_ADMIN: ${{ secrets.GH_TOKEN_ADMIN }} @@ -394,7 +394,7 @@ jobs: steps: - name: Run build 3.7 id: build - uses: splunk/addonfactory-workflow-addon-release/.github/actions/build@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/build@deps/update_first_4 with: python_version: "3.7" SA_GH_USER_NAME: ${{ secrets.SA_GH_USER_NAME }} @@ -424,7 +424,7 @@ jobs: packages: read steps: - name: Run build 3.9 - uses: splunk/addonfactory-workflow-addon-release/.github/actions/build@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/build@deps/update_first_4 with: python_version: "3.9" SA_GH_USER_NAME: ${{ secrets.SA_GH_USER_NAME }} @@ -444,7 +444,7 @@ jobs: if: ${{ !cancelled() && needs.build.result == 'success' }} steps: - name: Run VirusTotal check - uses: splunk/addonfactory-workflow-addon-release/.github/actions/virustotal@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/virustotal@deps/update_first_4 with: VT_API_KEY: ${{ secrets.VT_API_KEY }} @@ -464,7 +464,7 @@ jobs: checks: write steps: - name: Run requirements unit tests - uses: splunk/addonfactory-workflow-addon-release/.github/actions/requirements-unit-tests@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/requirements-unit-tests@deps/update_first_4 appinspect-cli: name: AppInspect CLI ${{ matrix.tags }} @@ -485,7 +485,7 @@ jobs: - "manual" steps: - name: Run appinspect CLI - uses: splunk/addonfactory-workflow-addon-release/.github/actions/appinspect-cli@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/appinspect-cli@deps/update_first_4 with: matrix_tags: ${{ matrix.tags }} @@ -504,7 +504,7 @@ jobs: - "cloud" steps: - name: Run appinspect API - uses: splunk/addonfactory-workflow-addon-release/.github/actions/appinspect-api@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/appinspect-api@deps/update_first_4 with: matrix_tags: ${{ matrix.tags }} SPL_COM_USER: ${{ secrets.SPL_COM_USER }} @@ -522,7 +522,7 @@ jobs: packages: write steps: - name: Run artifact registry - uses: splunk/addonfactory-workflow-addon-release/.github/actions/artifact-registry@update_first_4 + uses: splunk/addonfactory-workflow-addon-release/.github/actions/artifact-registry@deps/update_first_4 with: sc4s: ${{ needs.meta.outputs.sc4s }}