Skip to content

Commit 4254f3d

Browse files
Bump eslint from 8.55.0 to 8.56.0 (#136)
Bumps [eslint](https://github.com/eslint/eslint) from 8.55.0 to 8.56.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.55.0...v8.56.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b1b635d commit 4254f3d

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

dist/index.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"devDependencies": {
2727
"@vercel/ncc": "^0.38.0",
28-
"eslint": "^8.55.0",
28+
"eslint": "^8.56.0",
2929
"jest": "^29.7.0"
3030
}
3131
}

src/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ async function run() {
3737
jobHasError = runAssertions(uses, allowlist, isDryRun);
3838
} else if (steps !== undefined) {
3939
for (const step of steps) {
40-
jobHasError ||= runAssertions(step['uses'], allowlist, isDryRun);
40+
if (!jobHasError) {
41+
jobHasError = runAssertions(step['uses'], allowlist, isDryRun);
42+
}
4143
}
4244
} else {
4345
core.warning(`The "${job}" job of the "${basename}" workflow does not contain uses or steps.`);

0 commit comments

Comments
 (0)