Skip to content

Commit d6d74e7

Browse files
authored
Merge branch 'codeceptjs:3.x' into 3.x
2 parents d675ea3 + 30a36a6 commit d6d74e7

18 files changed

+85
-68
lines changed

.github/workflows/acceptance-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# Checkout the repository
2626
- name: Checkout Repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
# Install Docker Compose
3030
- name: Install Docker Compose

.github/workflows/appium_Android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
test-suite: ['other', 'quick']
2424

2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727

2828
- name: Use Node.js ${{ matrix.node-version }}
29-
uses: actions/setup-node@v5
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232

.github/workflows/appium_iOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
test-suite: ['other', 'quick']
2424

2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- name: Use Node.js ${{ matrix.node-version }}
28-
uses: actions/setup-node@v5
28+
uses: actions/setup-node@v6
2929
with:
3030
node-version: ${{ matrix.node-version }}
3131
- run: npm i --force

.github/workflows/check.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
name: Check Tests
1313
steps:
14-
- uses: actions/checkout@v5
15-
with:
16-
fetch-depth: 0
17-
- uses: testomatio/check-tests@stable
18-
if: github.repository == 'codeceptjs/CodeceptJS' && github.event.pull_request.title == '3.x'
19-
with:
20-
framework: mocha
21-
tests: "./test/**/*_test.js"
22-
token: ${{ secrets.GITHUB_TOKEN }}
23-
has-tests-label: true
24-
comment-on-empty: true
25-
github-pat: ${{ secrets.GH_PAT }}
26-
enable-documentation: true
27-
documentation-branch: "master"
14+
- uses: actions/checkout@v6
15+
with:
16+
fetch-depth: 0
17+
- uses: testomatio/check-tests@stable
18+
if: github.repository == 'codeceptjs/CodeceptJS' && github.event.pull_request.title == '3.x'
19+
with:
20+
framework: mocha
21+
tests: './test/**/*_test.js'
22+
token: ${{ secrets.GITHUB_TOKEN }}
23+
has-tests-label: true
24+
comment-on-empty: true
25+
github-pat: ${{ secrets.GH_PAT }}
26+
enable-documentation: true
27+
documentation-branch: 'master'

.github/workflows/doc-generation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Check out the repo
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v5
21+
uses: actions/setup-node@v6
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020

@@ -26,10 +26,10 @@ jobs:
2626
echo "version=$VERSION" >> $GITHUB_OUTPUT
2727
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v3
29+
uses: docker/setup-buildx-action@v4
3030

3131
- name: Login to Docker Hub
32-
uses: docker/login-action@v3
32+
uses: docker/login-action@v4
3333
with:
3434
username: ${{ secrets.DOCKERHUB_USERNAME }}
3535
password: ${{ secrets.DOCKERHUB_PASSWORD }}
@@ -43,10 +43,10 @@ jobs:
4343
4444
- name: Build and push Docker image
4545
if: steps.tag_check.outputs.status_code != '200'
46-
uses: docker/build-push-action@v6
46+
uses: docker/build-push-action@v7
4747
with:
4848
context: .
4949
push: true
5050
tags: |
5151
${{ env.DOCKER_REPO }}:latest
52-
${{ env.DOCKER_REPO }}:${{ env.VERSION }}
52+
${{ env.DOCKER_REPO }}:${{ env.VERSION }}

.github/workflows/dtslint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
matrix:
1616
node-version: [20.x]
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v5
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
- run: npm i --force

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
node-version: [20.x]
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- uses: shivammathur/setup-php@v2

.github/workflows/plugin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
node-version: [20.x]
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- uses: shivammathur/setup-php@v2

.github/workflows/puppeteer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
node-version: [20.x]
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Use Node.js ${{ matrix.node-version }}
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
- uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)