Skip to content

Commit a2b316f

Browse files
authored
Merge pull request #33 from datavisyn/mp/cypress_v6
Update to cypress github action v6 and Node 20
2 parents e5534f7 + e4cbfbc commit a2b316f

15 files changed

+20
-20
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
run: npm run webpack:dev
198198
shell: bash
199199
- name: Run cypress e2e tests
200-
uses: cypress-io/github-action@v4
200+
uses: cypress-io/github-action@v6
201201
with:
202202
# Currently, the videos are buggy because of low-cpu/electron environment: https://github.com/cypress-io/cypress/issues/8210
203203
config: video=false,modifyObstructiveCode=false
@@ -210,7 +210,7 @@ jobs:
210210
wait-on: "http://localhost:8080, http://localhost:9000/health"
211211
env: ${{ secrets.CYPRESS_ENV }}
212212
- name: Run cypress component tests
213-
uses: cypress-io/github-action@v4
213+
uses: cypress-io/github-action@v6
214214
with:
215215
# Currently, the videos are buggy because of low-cpu/electron environment: https://github.com/cypress-io/cypress/issues/8210
216216
config: video=false,modifyObstructiveCode=false

.github/workflows/build-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
permissions:
3535
id-token: write
3636
contents: write
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-22.04
3838
steps:
3939
# checkout specific source repository
4040
- uses: actions/checkout@v3

.github/workflows/build-product.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
ecr_repository_keys: ${{ steps.get-parameters.outputs.ecr_repository_keys }}
5858
create_workspace: ${{ steps.get-parameters.outputs.create_workspace }}
5959
stage: ${{ steps.get-parameters.outputs.stage }}
60-
runs-on: ubuntu-20.04
60+
runs-on: ubuntu-22.04
6161
steps:
6262
# checkout specific repository
6363
- uses: actions/checkout@v3
@@ -119,7 +119,7 @@ jobs:
119119
post-build:
120120
needs: [prepare-build, build-single, build-workspace]
121121
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')}}
122-
runs-on: ubuntu-20.04
122+
runs-on: ubuntu-22.04
123123
steps:
124124
- uses: actions/checkout@v3
125125
with:
@@ -138,7 +138,7 @@ jobs:
138138
needs: [prepare-build, post-build]
139139
# Add always() as otherwise the job is being skipped: https://docs.github.com/en/actions/learn-github-actions/expressions#status-check-functions
140140
if: ${{ always() && needs.post-build.result == 'success' && fromJSON(needs.prepare-build.outputs.trigger_automatic_deployment) }}
141-
runs-on: ubuntu-20.04
141+
runs-on: ubuntu-22.04
142142
strategy:
143143
matrix:
144144
customer: ${{ fromJSON(needs.prepare-build.outputs.customers) }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
concurrency:
4242
group: '${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.ecr_repository }}'
4343
cancel-in-progress: true
44-
runs-on: ubuntu-20.04
44+
runs-on: ubuntu-22.04
4545
steps:
4646
# checkout specific source repository
4747
- uses: actions/checkout@v3

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
concurrency:
3636
group: "${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.chart_repository_url }}"
3737
cancel-in-progress: true
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-22.04
3939
steps:
4040
# checkout specific source repository
4141
- uses: actions/checkout@v3

.github/workflows/build-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
permissions:
3535
id-token: write
3636
contents: write
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-22.04
3838
steps:
3939
# checkout specific source repository
4040
- uses: actions/checkout@v3

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ permissions:
5959

6060
jobs:
6161
build-components:
62-
runs-on: ubuntu-20.04
62+
runs-on: ubuntu-22.04
6363
steps:
6464
# checkout specific repository
6565
- uses: actions/checkout@v3

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ permissions:
6060

6161
jobs:
6262
build-components:
63-
runs-on: ubuntu-20.04
63+
runs-on: ubuntu-22.04
6464
steps:
6565
# checkout specific repository
6666
- uses: actions/checkout@v3

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ env:
2727

2828
jobs:
2929
check-helm-chart-version:
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-22.04
3131
steps:
3232
# checkout specific source repository
3333
- uses: actions/checkout@v3

.github/workflows/deploy-product.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ env:
5252

5353
jobs:
5454
deploy:
55-
runs-on: ubuntu-20.04
55+
runs-on: ubuntu-22.04
5656
outputs:
5757
revision_label: ${{ steps.get-revision-label.outputs.revision_label }}
5858
steps:

0 commit comments

Comments
 (0)