Skip to content

Commit ee15208

Browse files
committed
all proposed dependabot updates with adapted WORKFLOW_BRANCH
1 parent d8c4e65 commit ee15208

20 files changed

+29
-29
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ runs:
8787
steps:
8888
# Node
8989
- name: Set up node version
90-
uses: actions/setup-node@v3
90+
uses: actions/setup-node@v4
9191
if: inputs.enable_node == 'true'
9292
with:
9393
node-version: ${{ inputs.node_version }}
@@ -136,7 +136,7 @@ runs:
136136
name: node-yarn-lock
137137
# 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
138138
- name: Restore yarn cache
139-
uses: actions/cache/restore@v3
139+
uses: actions/cache/restore@v4
140140
if: inputs.enable_node == 'true' && inputs.enable_node_cache == 'true'
141141
with:
142142
# 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
@@ -234,7 +234,7 @@ runs:
234234
RUN_PYTHON_BUILD: ${{ inputs.run_python_build }}
235235
# Node
236236
- name: Save yarn cache
237-
uses: actions/cache/save@v3
237+
uses: actions/cache/save@v4
238238
if: inputs.enable_node == 'true' && steps.build.outcome == 'success' && inputs.enable_node_cache == 'true'
239239
with:
240240
# 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
@@ -253,7 +253,7 @@ runs:
253253
# Chromatic
254254
- name: Run Chromatic
255255
if: inputs.enable_node == 'true' && inputs.chromatic_enable == 'true'
256-
uses: chromaui/action@v11.7.1
256+
uses: chromaui/action@v11.12.1
257257
with:
258258
exitZeroOnChanges: true
259259
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ env:
102102
PYPI_REGISTRY: "https://upload.pypi.org/legacy/"
103103
PYPI_USERNAME: "datavisyn"
104104
PYTHON_VERSION: "3.10"
105-
WORKFLOW_BRANCH: "main"
105+
WORKFLOW_BRANCH: "vdelev_all_dependabot"
106106
POSTGRES_HOSTNAME: postgres_${{ github.job }}_${{ inputs.deduplication_id }}_${{ github.run_id }}_${{ github.run_attempt }}
107107

108108
permissions:
@@ -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-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ on:
3232
env:
3333
NPM_REGISTRY: "https://registry.npmjs.org/"
3434
NODE_VERSION: "20.9"
35-
WORKFLOW_BRANCH: "main"
35+
WORKFLOW_BRANCH: "vdelev_all_dependabot"
3636

3737
permissions:
3838
contents: read

.github/workflows/build-product.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727
TIME_ZONE: "Europe/Vienna"
2828
NODE_VERSION: "20.9"
2929
PYTHON_VERSION: "3.10"
30-
WORKFLOW_BRANCH: "main"
30+
WORKFLOW_BRANCH: "vdelev_all_dependabot"
3131
PYTHON_BASE_IMAGE: "python:3.10.8-slim-bullseye"
3232
DATAVISYN_PYTHON_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/python:main"
3333
DATAVISYN_NGINX_BASE_IMAGE: "188237246440.dkr.ecr.eu-central-1.amazonaws.com/datavisyn/base/nginx:main"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ permissions:
2828
contents: read
2929

3030
env:
31-
WORKFLOW_BRANCH: "main"
31+
WORKFLOW_BRANCH: "vdelev_all_dependabot"
3232

3333
jobs:
3434
build:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ permissions:
2222
contents: read
2323

2424
env:
25-
WORKFLOW_BRANCH: "main"
25+
WORKFLOW_BRANCH: "vdelev_all_dependabot"
2626

2727
concurrency:
2828
group: '${{ github.workflow }}-${{ github.ref || github.head_ref }}'

0 commit comments

Comments
 (0)