diff --git a/.github/workflows/build-docker-artifacts-push.yml b/.github/workflows/build-docker-artifacts-push.yml index 61023350..15ab6554 100644 --- a/.github/workflows/build-docker-artifacts-push.yml +++ b/.github/workflows/build-docker-artifacts-push.yml @@ -46,12 +46,12 @@ jobs: steps: - name: Checkout repository (must be run in infrastructure-k8s) - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} - name: Checkout github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-docker-artifacts-trigger-push.yml b/.github/workflows/build-docker-artifacts-trigger-push.yml index 303cbd5a..3216dfca 100644 --- a/.github/workflows/build-docker-artifacts-trigger-push.yml +++ b/.github/workflows/build-docker-artifacts-trigger-push.yml @@ -43,13 +43,13 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} - name: Checkout github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-docker-artifacts.yml b/.github/workflows/build-docker-artifacts.yml index e013a60d..136eca91 100644 --- a/.github/workflows/build-docker-artifacts.yml +++ b/.github/workflows/build-docker-artifacts.yml @@ -65,13 +65,13 @@ jobs: runs-on: 'ubuntu-22.04' steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} - name: Checkout github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -166,7 +166,7 @@ jobs: sudo rm -rf /opt/ghc # TODO: Support arbitrary repositories, not just the current one? - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} @@ -174,7 +174,7 @@ jobs: # https://github.com/yarnpkg/yarn/issues/2614#issuecomment-2148174789 persist-credentials: false - name: Checkout github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -296,13 +296,13 @@ jobs: runs-on: 'ubuntu-22.04' steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} - name: Checkout github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-node-python.yml b/.github/workflows/build-node-python.yml index 38d3683f..326ccfa0 100644 --- a/.github/workflows/build-node-python.yml +++ b/.github/workflows/build-node-python.yml @@ -142,13 +142,13 @@ jobs: runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }} steps: - name: Checkout source repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }} - name: Checkout github-workflows - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -184,12 +184,12 @@ jobs: runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }} steps: - name: Checkout source repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} - name: Checkout github-workflows - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -276,13 +276,13 @@ jobs: echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}" } >> "$GITHUB_ENV" - name: Checkout source repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }} - name: Checkout github-workflows - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -419,13 +419,13 @@ jobs: echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}" } >> "$GITHUB_ENV" - name: Checkout source repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch || github.sha }} token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }} - name: Checkout github-workflows - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-node.yml b/.github/workflows/build-node.yml index 95855175..12187f00 100644 --- a/.github/workflows/build-node.yml +++ b/.github/workflows/build-node.yml @@ -57,13 +57,13 @@ jobs: runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }} steps: - name: Checkout source repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch }} token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }} - name: Checkout github-workflows - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-product.yml b/.github/workflows/build-product.yml index f7c860ba..2a22e60e 100644 --- a/.github/workflows/build-product.yml +++ b/.github/workflows/build-product.yml @@ -62,9 +62,9 @@ jobs: runs-on: ubuntu-22.04 steps: # checkout specific repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -124,7 +124,7 @@ jobs: if: ${{ always() && (needs.build-single.result == 'success' || needs.build-single.result == 'skipped') && (needs.build-workspace.result == 'success' || needs.build-workspace.result == 'skipped') && !(needs.build-workspace.result == 'skipped' && needs.build-single.result == 'skipped')}} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-push-docker.yml b/.github/workflows/build-push-docker.yml index dbbbd21b..51b557d9 100644 --- a/.github/workflows/build-push-docker.yml +++ b/.github/workflows/build-push-docker.yml @@ -38,9 +38,9 @@ jobs: runs-on: ubuntu-22.04 steps: # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-push-helm-chart.yml b/.github/workflows/build-push-helm-chart.yml index ff0e3ce5..94c647e2 100644 --- a/.github/workflows/build-push-helm-chart.yml +++ b/.github/workflows/build-push-helm-chart.yml @@ -36,9 +36,9 @@ jobs: runs-on: ubuntu-22.04 steps: # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-python.yml b/.github/workflows/build-python.yml index 7d8295c3..ce579c79 100644 --- a/.github/workflows/build-python.yml +++ b/.github/workflows/build-python.yml @@ -46,12 +46,12 @@ jobs: runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }} steps: - name: Checkout source repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ inputs.branch }} token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} - name: Checkout github-workflows - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-single-product-part.yml b/.github/workflows/build-single-product-part.yml index 66e5eef0..0b07eaee 100644 --- a/.github/workflows/build-single-product-part.yml +++ b/.github/workflows/build-single-product-part.yml @@ -74,11 +74,11 @@ jobs: sudo rm -rf /usr/local/lib/android sudo rm -rf /opt/ghc # checkout specific repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/build-workspace-product-part.yml b/.github/workflows/build-workspace-product-part.yml index d95db0e1..1377b433 100644 --- a/.github/workflows/build-workspace-product-part.yml +++ b/.github/workflows/build-workspace-product-part.yml @@ -64,11 +64,11 @@ jobs: runs-on: ubuntu-22.04 steps: # checkout specific repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/check-helm-chart-version.yml b/.github/workflows/check-helm-chart-version.yml index d5e3f2e8..40339ef6 100644 --- a/.github/workflows/check-helm-chart-version.yml +++ b/.github/workflows/check-helm-chart-version.yml @@ -30,9 +30,9 @@ jobs: runs-on: ubuntu-22.04 steps: # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/deploy-product.yml b/.github/workflows/deploy-product.yml index 1ea2f550..94bbe0f1 100644 --- a/.github/workflows/deploy-product.yml +++ b/.github/workflows/deploy-product.yml @@ -53,9 +53,9 @@ jobs: revision_label: ${{ steps.get-revision-label.outputs.revision_label }} steps: # checkout repo to get package.json - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a0b4f05e..bd559f95 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-22.04 if: ${{ github.event_name == 'push' }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: # Full git history needed to get a proper # list of changed files within `super-linter` diff --git a/.github/workflows/publish-node-python.yml b/.github/workflows/publish-node-python.yml index cbcc18b8..fafa27ab 100644 --- a/.github/workflows/publish-node-python.yml +++ b/.github/workflows/publish-node-python.yml @@ -52,11 +52,11 @@ jobs: echo "only the main branch can be published." exit 1 # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # has to set because otherwise it will not work # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -87,9 +87,9 @@ jobs: echo "only the main branch can be published." exit 1 # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/publish-node.yml b/.github/workflows/publish-node.yml index c2ad8fc9..52372cae 100644 --- a/.github/workflows/publish-node.yml +++ b/.github/workflows/publish-node.yml @@ -40,11 +40,11 @@ jobs: echo "only the main branch can be published." exit 1 # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # has to set because otherwise it will not work # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/publish-python.yml b/.github/workflows/publish-python.yml index 3d23bf38..a41f3de6 100644 --- a/.github/workflows/publish-python.yml +++ b/.github/workflows/publish-python.yml @@ -39,9 +39,9 @@ jobs: echo "only the main branch can be published." exit 1 # checkout specific source repository - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/release-post-merge.yml b/.github/workflows/release-post-merge.yml index e77585d7..0ebddbd0 100644 --- a/.github/workflows/release-post-merge.yml +++ b/.github/workflows/release-post-merge.yml @@ -54,7 +54,7 @@ jobs: git config --add --global url."https://$GITHUB_TOKEN@github.com/".insteadOf git@github.com: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.DATAVISYN_BOT_REPO_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/release-product.yml b/.github/workflows/release-product.yml index 061ac31e..2a38906d 100644 --- a/.github/workflows/release-product.yml +++ b/.github/workflows/release-product.yml @@ -33,11 +33,11 @@ jobs: exit 1 env: GITHUB_REF: ${{ github.ref_name }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.DATAVISYN_BOT_REPO_TOKEN }} # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -180,10 +180,10 @@ jobs: run: | echo 'only the main branches can be released.' exit 1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.DATAVISYN_BOT_REPO_TOKEN }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} @@ -266,7 +266,7 @@ jobs: DEVELOP_BRANCH: ${{ steps.get-release-version.outputs.develop_branch_name }} MAIN_BRANCH: ${{ steps.get-release-version.outputs.main_branch_name }} # checkout this workflow repository to get actions - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }} diff --git a/.github/workflows/release-source.yml b/.github/workflows/release-source.yml index 00dc4c4f..c01e9de6 100644 --- a/.github/workflows/release-source.yml +++ b/.github/workflows/release-source.yml @@ -63,12 +63,12 @@ jobs: fi # checkout specific repository - name: checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # checkout this workflow repository to get actions - name: checkout github-workflows repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: datavisyn/github-workflows ref: ${{ env.WORKFLOW_BRANCH }}