Skip to content

Commit 2f27ff7

Browse files
ci(deps): bump the actions group with 6 updates (#10)
Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f16cab5 commit 2f27ff7

3 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@v3
36+
uses: github/codeql-action/init@v4
3737
with:
3838
languages: ${{ matrix.language }}
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@v3
41+
uses: github/codeql-action/analyze@v4
4242
with:
4343
category: '/language:${{ matrix.language }}'

.github/workflows/regression.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v6
4444

4545
- name: Setup Node.js
46-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@v6
4747
with:
4848
node-version: '20'
4949
cache: 'npm'
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Cache Playwright browsers
5555
id: playwright-cache
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: ~/.cache/ms-playwright
5959
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
@@ -81,23 +81,23 @@ jobs:
8181

8282
- name: Upload Playwright HTML report (shard)
8383
if: always()
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v7
8585
with:
8686
name: playwright-report-regression-shard-${{ matrix.shard }}
8787
path: playwright-report/
8888
retention-days: 14
8989

9090
- name: Upload Allure results (shard)
9191
if: always()
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: allure-results-regression-shard-${{ matrix.shard }}
9595
path: allure-results/
9696
retention-days: 14
9797

9898
- name: Upload trace / screenshots on failure
9999
if: failure()
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v7
101101
with:
102102
name: test-results-regression-shard-${{ matrix.shard }}
103103
path: test-results/
@@ -112,16 +112,16 @@ jobs:
112112

113113
steps:
114114
- name: Checkout repository
115-
uses: actions/checkout@v4
115+
uses: actions/checkout@v6
116116

117117
- name: Setup Node.js
118-
uses: actions/setup-node@v4
118+
uses: actions/setup-node@v6
119119
with:
120120
node-version: '20'
121121
cache: 'npm'
122122

123123
- name: Download Allure results from shards
124-
uses: actions/download-artifact@v4
124+
uses: actions/download-artifact@v8
125125
with:
126126
path: allure-results-combined
127127
pattern: allure-results-regression-shard-*
@@ -134,7 +134,7 @@ jobs:
134134
run: npx allure generate allure-results-combined -o allure-report --clean
135135

136136
- name: Upload combined Allure report
137-
uses: actions/upload-artifact@v4
137+
uses: actions/upload-artifact@v7
138138
with:
139139
name: allure-report-regression
140140
path: allure-report/

.github/workflows/smoke.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434

3535
- name: Setup Node.js
36-
uses: actions/setup-node@v4
36+
uses: actions/setup-node@v6
3737
with:
3838
node-version: '20'
3939
cache: 'npm'
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Cache Playwright browsers
4545
id: playwright-cache
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ~/.cache/ms-playwright
4949
key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
@@ -71,23 +71,23 @@ jobs:
7171

7272
- name: Upload Playwright HTML report
7373
if: always()
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v7
7575
with:
7676
name: playwright-report-smoke
7777
path: playwright-report/
7878
retention-days: 7
7979

8080
- name: Upload Allure results
8181
if: always()
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v7
8383
with:
8484
name: allure-results-smoke
8585
path: allure-results/
8686
retention-days: 7
8787

8888
- name: Upload trace / screenshots on failure
8989
if: failure()
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v7
9191
with:
9292
name: test-results-smoke
9393
path: test-results/

0 commit comments

Comments
 (0)