Skip to content

Commit 7231d94

Browse files
committed
bump all actions/checkout to v4
1 parent ee15208 commit 7231d94

13 files changed

+31
-31
lines changed

.github/workflows/build-product.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ jobs:
5757
runs-on: ubuntu-22.04
5858
steps:
5959
# checkout specific repository
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161
# checkout this workflow repository to get actions
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
with:
6464
repository: datavisyn/github-workflows
6565
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -118,7 +118,7 @@ jobs:
118118
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')}}
119119
runs-on: ubuntu-22.04
120120
steps:
121-
- uses: actions/checkout@v3
121+
- uses: actions/checkout@v4
122122
with:
123123
repository: datavisyn/github-workflows
124124
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-push-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
runs-on: ubuntu-22.04
3939
steps:
4040
# checkout specific source repository
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
# checkout this workflow repository to get actions
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444
with:
4545
repository: datavisyn/github-workflows
4646
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-push-helm-chart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
runs-on: ubuntu-22.04
3737
steps:
3838
# checkout specific source repository
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
# checkout this workflow repository to get actions
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
with:
4343
repository: datavisyn/github-workflows
4444
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-single-product-part.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959
runs-on: ubuntu-22.04
6060
steps:
6161
# checkout specific repository
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
with:
6464
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
6565
# checkout this workflow repository to get actions
66-
- uses: actions/checkout@v3
66+
- uses: actions/checkout@v4
6767
with:
6868
repository: datavisyn/github-workflows
6969
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-workspace-product-part.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ jobs:
5757
runs-on: ubuntu-22.04
5858
steps:
5959
# checkout specific repository
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161
with:
6262
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
6363
# checkout this workflow repository to get actions
64-
- uses: actions/checkout@v3
64+
- uses: actions/checkout@v4
6565
with:
6666
repository: datavisyn/github-workflows
6767
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/check-helm-chart-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
runs-on: ubuntu-22.04
3131
steps:
3232
# checkout specific source repository
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
# checkout this workflow repository to get actions
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
repository: datavisyn/github-workflows
3838
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/deploy-product.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
revision_label: ${{ steps.get-revision-label.outputs.revision_label }}
4848
steps:
4949
# checkout repo to get package.json
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
# checkout this workflow repository to get actions
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
with:
5454
repository: datavisyn/github-workflows
5555
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
if: ${{ github.event_name == 'push' }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
# Full git history needed to get a proper
2020
# list of changed files within `super-linter`

.github/workflows/publish-node-python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
echo "only the main branch can be published."
4545
exit 1
4646
# checkout specific source repository
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v4
4848
with:
4949
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # has to set because otherwise it will not work
5050
# checkout this workflow repository to get actions
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
with:
5353
repository: datavisyn/github-workflows
5454
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -78,9 +78,9 @@ jobs:
7878
echo "only the main branch can be published."
7979
exit 1
8080
# checkout specific source repository
81-
- uses: actions/checkout@v3
81+
- uses: actions/checkout@v4
8282
# checkout this workflow repository to get actions
83-
- uses: actions/checkout@v3
83+
- uses: actions/checkout@v4
8484
with:
8585
repository: datavisyn/github-workflows
8686
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/publish-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
echo "only the main branch can be published."
3636
exit 1
3737
# checkout specific source repository
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
with:
4040
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }} # has to set because otherwise it will not work
4141
# checkout this workflow repository to get actions
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
with:
4444
repository: datavisyn/github-workflows
4545
ref: ${{ env.WORKFLOW_BRANCH }}

0 commit comments

Comments
 (0)