Skip to content

Commit 65ea069

Browse files
Merge pull request #101 from datavisyn/vdelev_all_dependabot
all dependabots updates, WORKFLOW_BRANCH set to main
2 parents fadd65e + b0ba231 commit 65ea069

19 files changed

+45
-45
lines changed

.github/actions/build-node-python/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ runs:
9191
steps:
9292
# Node
9393
- name: Set up node version
94-
uses: actions/setup-node@v3
94+
uses: actions/setup-node@v4
9595
if: inputs.enable_node == 'true'
9696
with:
9797
node-version: ${{ inputs.node_version }}
@@ -140,7 +140,7 @@ runs:
140140
name: node-yarn-lock
141141
# Enable yarn download cache, @see https://github.com/actions/cache/tree/main/save#always-save-cache and https://github.com/actions/setup-node/issues/325
142142
- name: Restore yarn cache
143-
uses: actions/cache/restore@v3
143+
uses: actions/cache/restore@v4
144144
if: inputs.enable_node == 'true' && inputs.enable_node_cache == 'true'
145145
with:
146146
# This path is the global yarn cache, because for some reason the local .yarn/cache is not used. Maybe we need to set the cacheFolder, enableGlobalCache, ... options differently? @see https://yarnpkg.com/configuration/yarnrc#cacheFolder
@@ -238,7 +238,7 @@ runs:
238238
RUN_PYTHON_BUILD: ${{ inputs.run_python_build }}
239239
# Node
240240
- name: Save yarn cache
241-
uses: actions/cache/save@v3
241+
uses: actions/cache/save@v4
242242
if: inputs.enable_node == 'true' && steps.build.outcome == 'success' && inputs.enable_node_cache == 'true'
243243
with:
244244
# This path is the global yarn cache, because for some reason the local .yarn/cache is not used. Maybe we need to set the cacheFolder, enableGlobalCache, ... options differently? @see https://yarnpkg.com/configuration/yarnrc#cacheFolder
@@ -257,7 +257,7 @@ runs:
257257
# Chromatic
258258
- name: Run Chromatic
259259
if: inputs.enable_node == 'true' && inputs.chromatic_enable == 'true'
260-
uses: chromaui/action@v11.7.1
260+
uses: chromaui/action@v11.12.1
261261
with:
262262
exitZeroOnChanges: true
263263
exitOnceUploaded: true

.github/actions/build-push-helm-chart/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
using: "composite"
2020
steps:
2121
- name: Set up helm
22-
uses: azure/setup-helm@v3
22+
uses: azure/setup-helm@v4
2323
with:
2424
version: "v3.12.2"
2525
id: install

.github/actions/build-push-image/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ runs:
3434
using: "composite"
3535
steps:
3636
- name: Configure AWS Credentials
37-
uses: aws-actions/configure-aws-credentials@v1.7.0
37+
uses: aws-actions/configure-aws-credentials@v4.0.2
3838
with:
3939
role-to-assume: ${{ inputs.aws_role }}
4040
aws-region: ${{ inputs.aws_region }}
4141
- name: Login to Amazon ECR
4242
id: login-ecr
43-
uses: aws-actions/amazon-ecr-login@v1.5.3
43+
uses: aws-actions/amazon-ecr-login@v2.0.1
4444
- name: get image tag
4545
id: get-image-tag
4646
run: |
@@ -53,7 +53,7 @@ runs:
5353
IMAGE_TAG: ${{ inputs.image_tag }}
5454
shell: bash
5555
- name: Build and push image to Amazon ECR
56-
uses: docker/build-push-action@v3
56+
uses: docker/build-push-action@v6
5757
with:
5858
context: ${{ inputs.current_directory }}
5959
file: ${{ inputs.docker_file }}

.github/actions/get-ecr-scan-result/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ runs:
4343
using: "composite"
4444
steps:
4545
- name: Configure AWS Credentials
46-
uses: aws-actions/configure-aws-credentials@v1.7.0
46+
uses: aws-actions/configure-aws-credentials@v4.0.2
4747
with:
4848
role-to-assume: ${{ inputs.aws_role }}
4949
aws-region: ${{ inputs.aws_region }}
5050
- name: Login to Amazon ECR
5151
id: login-ecr
52-
uses: aws-actions/amazon-ecr-login@v1.5.3
52+
uses: aws-actions/amazon-ecr-login@v2.0.1
5353
- name: Get AWS ECR Scan results
5454
id: get-scan-results
5555
run: |

.github/actions/retag-image/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ runs:
2323
using: "composite"
2424
steps:
2525
- name: Configure AWS Credentials
26-
uses: aws-actions/configure-aws-credentials@v1.7.0
26+
uses: aws-actions/configure-aws-credentials@v4.0.2
2727
with:
2828
role-to-assume: ${{ inputs.aws_role }}
2929
aws-region: ${{ inputs.aws_region }}
3030
- name: Login to Amazon ECR
3131
id: login-ecr
32-
uses: aws-actions/amazon-ecr-login@v1.5.3
32+
uses: aws-actions/amazon-ecr-login@v2.0.1
3333
- name: retag image
3434
run: |
3535
mapfile -t array < <(echo "${REPOSITORY_NAMES}" | tr ',' "\n")

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ jobs:
403403
path: playwright-report/
404404
- name: Run Chromatic Playwright
405405
if: ${{ inputs.chromatic_enable }}
406-
uses: chromaui/action@v11.7.1
406+
uses: chromaui/action@v11.12.1
407407
with:
408408
playwright: true
409409
exitZeroOnChanges: true

.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 }}

0 commit comments

Comments
 (0)