Skip to content

Commit 9af0acb

Browse files
authored
chore(Internal): 🔖 new release (#335)
2 parents 15354cd + 840b25d commit 9af0acb

File tree

125 files changed

+3382
-1676
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+3382
-1676
lines changed

.github/dependabot.yml

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,47 @@ updates:
44
directory: '/'
55
target-branch: 'develop'
66
versioning-strategy: increase
7+
open-pull-requests-limit: 100
8+
labels:
9+
- ':house: pr: internal'
10+
reviewers:
11+
- 'boyka-core'
712
schedule:
8-
interval: 'daily'
13+
interval: 'monthly'
14+
timezone: 'Asia/Calcutta'
915

1016
- package-ecosystem: 'maven'
1117
directory: '/core-java'
1218
target-branch: 'develop'
19+
open-pull-requests-limit: 100
20+
labels:
21+
- ':house: pr: internal'
22+
reviewers:
23+
- 'boyka-core'
1324
schedule:
14-
interval: 'daily'
25+
interval: 'monthly'
26+
timezone: 'Asia/Calcutta'
1527

1628
- package-ecosystem: 'maven'
1729
directory: '/sample-tests'
1830
target-branch: 'develop'
31+
open-pull-requests-limit: 100
32+
labels:
33+
- ':house: pr: internal'
34+
reviewers:
35+
- 'boyka-core'
1936
schedule:
20-
interval: 'daily'
37+
interval: 'monthly'
38+
timezone: 'Asia/Calcutta'
2139

2240
- package-ecosystem: 'github-actions'
2341
directory: '/'
2442
target-branch: 'develop'
43+
open-pull-requests-limit: 100
44+
labels:
45+
- ':house: pr: internal'
46+
reviewers:
47+
- 'boyka-core'
2548
schedule:
26-
interval: 'daily'
49+
interval: 'monthly'
50+
timezone: 'Asia/Calcutta'

.github/workflows/bs-app-upload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out Git repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Upload Android App
2121
id: android_app_upload

.github/workflows/check-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3
14-
- uses: webiny/action-conventional-commits@v1.0.3
14+
- uses: webiny/action-conventional-commits@v1.1.0

.github/workflows/codeql.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@ jobs:
4141
uses: actions/checkout@v3
4242

4343
- name: Set up JDK 11
44-
uses: actions/setup-java@v1
44+
uses: actions/setup-java@v3
4545
if: matrix.language == 'java'
4646
with:
47-
java-version: 11
47+
java-version: '11'
48+
distribution: 'adopt'
4849

4950
- name: Initialize CodeQL
5051
uses: github/codeql-action/init@v2

.github/workflows/test-core.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ jobs:
8484
appium driver install uiautomator2
8585
8686
- name: Start Selenium Grid
87-
run: java -jar core-java/libs/selenium-server-4.4.0.jar standalone > core-java/selenium-grid.log &
87+
run: java -jar core-java/libs/selenium-server-4.7.0.jar standalone > core-java/selenium-grid.log &
8888

8989
- name: All Test execution
9090
uses: reactivecircus/android-emulator-runner@v2
9191
if: github.event_name == 'push'
9292
with:
9393
avd-name: Nexus_6
94-
api-level: 29
94+
api-level: 30
9595
target: google_apis
9696
arch: x86
9797
profile: Nexus 6
@@ -105,7 +105,7 @@ jobs:
105105
if: github.event_name == 'pull_request'
106106
with:
107107
avd-name: Nexus_6
108-
api-level: 29
108+
api-level: 30
109109
target: google_apis
110110
arch: x86
111111
profile: Nexus 6

.github/workflows/test-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Test boyka-framework release
22

33
on:
4+
workflow_dispatch:
45
release:
56
types:
67
- published
@@ -44,7 +45,7 @@ jobs:
4445
echo "version=$MVN_VERSION" >> $GITHUB_OUTPUT
4546
4647
- name: Start Selenium Grid
47-
run: java -jar core-java/libs/selenium-server-4.4.0.jar standalone > sample-tests/selenium-grid.log &
48+
run: java -jar core-java/libs/selenium-server-4.7.0.jar standalone > sample-tests/selenium-grid.log &
4849

4950
- name: All Test execution
5051
run: mvn clean test -f sample-tests/pom.xml -Dboyka.version=${{ steps.version.outputs.version }}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.16.0
1+
v16.18.1

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"eslint.nodePath": ".yarn/sdks",
1515
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
1616
"typescript.tsdk": ".yarn/sdks/typescript/lib",
17-
"typescript.enablePromptUseWorkspaceTsdk": true,
17+
"typescript.enablePromptUseWorkspaceTsdk": true
1818
}

.yarn/releases/yarn-3.2.4.cjs renamed to .yarn/releases/yarn-3.3.1.cjs

Lines changed: 310 additions & 288 deletions
Large diffs are not rendered by default.

.yarn/sdks/eslint/bin/eslint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/usr/bin/env node
22

33
const {existsSync} = require(`fs`);
4-
const {createRequire, createRequireFromPath} = require(`module`);
4+
const {createRequire} = require(`module`);
55
const {resolve} = require(`path`);
66

77
const relPnpApiPath = "../../../../.pnp.cjs";
88

99
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10-
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
10+
const absRequire = createRequire(absPnpApiPath);
1111

1212
if (existsSync(absPnpApiPath)) {
1313
if (!process.versions.pnp) {

0 commit comments

Comments
 (0)