Skip to content

Commit 936b1f0

Browse files
committed
Merge branch 'main' into enhanced-expect-wdio-typing
2 parents 34aa707 + ffb5232 commit 936b1f0

File tree

7 files changed

+1344
-2751
lines changed

7 files changed

+1344
-2751
lines changed

.github/dependabot.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,29 @@ updates:
1010
ignore:
1111
# doesn't support glob anymore in v4
1212
- dependency-name: "rimraf"
13+
groups:
14+
patch-deps-updates:
15+
update-types:
16+
- "patch"
17+
minor-deps-updates:
18+
update-types:
19+
- "minor"
20+
major-deps-updates:
21+
update-types:
22+
- "major"
23+
- package-ecosystem: github-actions
24+
directory: "/"
25+
schedule:
26+
interval: weekly
27+
time: "11:00"
28+
open-pull-requests-limit: 10
29+
groups:
30+
patch-deps-updates:
31+
update-types:
32+
- "patch"
33+
minor-deps-updates:
34+
update-types:
35+
- "minor"
36+
major-deps-updates:
37+
update-types:
38+
- "major"

.github/workflows/expense.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
authorize:
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: octokit/request-action@v2.1.9
42+
- uses: octokit/request-action@v2.4.0
4343
with:
4444
route: GET /orgs/:organisation/teams/:team/memberships/${{ github.actor }}
4545
team: technical-steering-committee

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
authorize:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: octokit/request-action@v2.0.0
36+
- uses: octokit/request-action@v2.4.0
3737
with:
3838
route: GET /orgs/:organisation/teams/:team/memberships/${{ github.actor }}
3939
team: technical-steering-committee
@@ -47,11 +47,11 @@ jobs:
4747
contents: write
4848
id-token: write
4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151
with:
5252
ref: 'main'
5353
fetch-depth: 0
54-
- uses: actions/setup-node@v4
54+
- uses: actions/setup-node@v6
5555
with:
5656
node-version: 24.x
5757
- name: NPM Setup

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
matrix:
1616
node-version: [20.x, 22.x, 24.x]
1717
steps:
18-
- uses: actions/checkout@v2
19-
- uses: actions/setup-node@v1
18+
- uses: actions/checkout@v6
19+
- uses: actions/setup-node@v6
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
- name: Install Dependencies

.github/workflows/update.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
steps:
2020
- name: Fetch PR metadata
2121
id: metadata
22-
uses: dependabot/fetch-metadata@v1.6.0
22+
uses: dependabot/fetch-metadata@v2.4.0
2323
with:
2424
github-token: ${{ secrets.GITHUB_TOKEN }}
2525

2626
- name: Wait for PR CI
2727
# Don't merge updates to GitHub Actions versions automatically.
2828
# (Some repos may wish to limit by version range (major/minor/patch), or scope (dep vs dev-dep), too.)
2929
if: contains(steps.metadata.outputs.package-ecosystem, 'npm')
30-
uses: lewagon/wait-on-check-action@v1.3.3
30+
uses: lewagon/wait-on-check-action@v1.4.1
3131
with:
3232
ref: ${{ github.event.pull_request.head.sha }}
3333
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)