Skip to content

Commit bc81eb4

Browse files
r-farkhutdinovRuslan Farkhutdinov
andauthored
isEqual: Replace deprecated package with internal utility function (#134)
* isEqual: Replace deprecated package with internal utility function * Update GA versions * Update ubuntu version * Update chrome setup stage * Update chrome version * Update Ubuntu version to latest * Revert testcafe ubuntu version * Disable testcafe step --------- Co-authored-by: Ruslan Farkhutdinov <[email protected]>
1 parent 68fbee4 commit bc81eb4

File tree

20 files changed

+112
-27
lines changed

20 files changed

+112
-27
lines changed

.github/actions/html-editor/common/get-artifact/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
using: composite
1313
steps:
1414
- name: Download artifact
15-
uses: actions/download-artifact@v3
15+
uses: actions/download-artifact@v4
1616
with:
1717
name: devextreme-artifact-${{ inputs.branch }}
1818
path: ${{ inputs.working-directory }}

.github/actions/html-editor/common/prepare/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
restore-keys: ${{ runner.os }}-node-modules
4343

4444
- name: Install .NET 6 SDK
45-
uses: actions/setup-dotnet@v3
45+
uses: actions/setup-dotnet@v4
4646
with:
4747
dotnet-version: 6.0.x
4848

@@ -52,7 +52,7 @@ runs:
5252
run: npm install --no-audit --no-fund
5353

5454
- name: Download quill ci package
55-
uses: actions/download-artifact@v3
55+
uses: actions/download-artifact@v4
5656
with:
5757
name: quill-package
5858
path: ${{ inputs.devextreme-package-directory }}

.github/actions/html-editor/steps/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
7z a -tzip -mx3 -mmt2 devextreme-artifact.zip artifacts ../devextreme-scss/scss/bundles
5353
5454
- name: Upload artifact
55-
uses: actions/upload-artifact@v3
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: devextreme-artifact-${{ inputs.branch }}
5858
path: ${{ inputs.devextreme-package-directory }}/devextreme-artifact.zip

.github/actions/html-editor/steps/testcafe-tests/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ runs:
3838
working-directory: ${{ inputs.devextreme-package-directory }}
3939

4040
- name: Setup chrome
41-
uses: ./devextreme-repo/.github/actions/setup-chrome
41+
uses: browser-actions/setup-chrome@v1
4242
with:
43-
chrome-version: '121.0.6167.160'
43+
chrome-version: '133.0.6943.53'
4444

4545
- name: Prepare localization
4646
shell: bash
@@ -57,15 +57,15 @@ runs:
5757
5858
- name: Copy compared screenshot artifacts
5959
if: ${{ failure() }}
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: compared-screenshots
6363
path: ${{ inputs.e2e-package-directory }}/artifacts/compared-screenshots/**/*
6464
if-no-files-found: ignore
6565

6666
- name: Copy failed test artifacts
6767
if: ${{ failure() }}
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: failed-tests
7171
path: ${{ inputs.e2e-package-directory }}/artifacts/failedtests/**/*

.github/actions/quill/common/get-artifact/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Download artifact
7-
uses: actions/download-artifact@v3
7+
uses: actions/download-artifact@v4
88
with:
99
name: quill-artifact
1010

.github/actions/quill/common/prepare/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ runs:
99
using: composite
1010
steps:
1111
- name: Use Node.js
12-
uses: actions/setup-node@v3
12+
uses: actions/setup-node@v4
1313
with:
1414
node-version: ${{ inputs.node-version }}
1515

1616
- name: Restore npm cache
17-
uses: actions/cache@v3
17+
uses: actions/cache@v4
1818
with:
1919
path: ./node_modules
2020
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}

.github/actions/quill/steps/build-package/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
run: npm pack
2020

2121
- name: Upload package artifact
22-
uses: actions/upload-artifact@v3
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: quill-package
2525
path: devextreme-quill-0.0.0-ci.tgz

.github/actions/quill/steps/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
run: |
1616
7z a -tzip -mx3 -mmt2 quill-artifact.zip dist
1717
- name: Upload artifact
18-
uses: actions/upload-artifact@v3
18+
uses: actions/upload-artifact@v4
1919
with:
2020
name: quill-artifact
2121
path: quill-artifact.zip

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL

.github/workflows/html-editor-checks.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ jobs:
7979
test-suite: ${{ matrix.test-suite }}
8080

8181
testcafe:
82+
if: false # Fix CI with updated Ubuntu version
8283
needs: [build-devextreme, set-up-branches]
83-
runs-on: ubuntu-20.04
84+
runs-on: ubuntu-latest
8485
timeout-minutes: 15
8586
name: testcafe ${{ matrix.branch }}
8687
strategy:

0 commit comments

Comments
 (0)