Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-artifacts-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-artifacts-trigger-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-docker-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -166,15 +166,15 @@ 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 }}
# This is required such that yarn install can access private repositories, i.e. visyn_pro
# 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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build-node-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-product.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-push-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-push-helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-single-product-part.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-workspace-product-part.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-helm-chart-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-product.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-node-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
git config --add --global url."https://[email protected]/".insteadOf [email protected]:

- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ secrets.DATAVISYN_BOT_REPO_TOKEN }}
fetch-depth: 0
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-product.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down