mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-10-20 07:08:56 +08:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bc3340afc5 | ||
|
5f1def5815 | ||
|
5a7191522f | ||
|
893f0e10c7 | ||
|
d5e58c8a04 | ||
|
2920a48bbc | ||
|
1904e7e80d | ||
|
702bb97ecb |
8
.github/dependabot.yml
vendored
Normal file
8
.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "npm"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
ignore:
|
||||
- dependency-name: "@types/node"
|
@@ -68,7 +68,7 @@ outputs:
|
||||
description: Link to the build scan if any
|
||||
|
||||
runs:
|
||||
using: 'node12'
|
||||
using: 'node16'
|
||||
main: 'dist/main/index.js'
|
||||
post: 'dist/post/index.js'
|
||||
|
||||
|
2
dist/main/index.js
vendored
2
dist/main/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/main/index.js.map
vendored
2
dist/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/post/index.js
vendored
2
dist/post/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/post/index.js.map
vendored
2
dist/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
3126
package-lock.json
generated
3126
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
20
package.json
20
package.json
@@ -35,19 +35,19 @@
|
||||
"string-argv": "0.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "27.0.3",
|
||||
"@types/node": "16.11.11",
|
||||
"@types/unzipper": "0.10.4",
|
||||
"@typescript-eslint/parser": "5.5.0",
|
||||
"@types/jest": "^27.4.0",
|
||||
"@types/unzipper": "^0.10.5",
|
||||
"@typescript-eslint/parser": "^5.10.1",
|
||||
"@zeit/ncc": "0.22.3",
|
||||
"eslint": "8.3.0",
|
||||
"eslint": "^8.7.0",
|
||||
"eslint-plugin-github": "4.3.5",
|
||||
"eslint-plugin-jest": "25.3.0",
|
||||
"jest": "27.4.3",
|
||||
"jest-circus": "27.4.2",
|
||||
"eslint-plugin-jest": "^26.0.0",
|
||||
"jest": "^27.4.7",
|
||||
"jest-circus": "^27.4.6",
|
||||
"js-yaml": "4.1.0",
|
||||
"prettier": "2.5.0",
|
||||
"ts-jest": "27.0.7",
|
||||
"typescript": "4.5.2"
|
||||
"prettier": "^2.5.1",
|
||||
"ts-jest": "^27.1.3",
|
||||
"typescript": "^4.5.5"
|
||||
}
|
||||
}
|
||||
|
@@ -235,7 +235,7 @@ export class GradleStateCache {
|
||||
|
||||
private initializeGradleUserHome(gradleUserHome: string, initScriptsDir: string): void {
|
||||
const propertiesFile = path.resolve(gradleUserHome, 'gradle.properties')
|
||||
fs.writeFileSync(propertiesFile, 'org.gradle.daemon=false')
|
||||
fs.appendFileSync(propertiesFile, 'org.gradle.daemon=false')
|
||||
|
||||
const buildScanCapture = path.resolve(initScriptsDir, 'build-scan-capture.init.gradle')
|
||||
fs.writeFileSync(
|
||||
|
Reference in New Issue
Block a user