Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cli 0.8.0-beta.0 #155

Merged
merged 28 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b8c13b9
Bump prettier from 3.2.4 to 3.2.5
dependabot[bot] Feb 22, 2024
9ae3da9
Bump eslint-plugin-github from 4.10.1 to 4.10.2
dependabot[bot] Mar 4, 2024
746aeba
Bump typescript from 5.3.3 to 5.4.5
dependabot[bot] Apr 15, 2024
4c573d2
Bump @types/node from 20.11.19 to 20.12.12
dependabot[bot] May 20, 2024
663a3b9
Use cli 0.8.0-beta.0
abcdefghiraj May 22, 2024
23b380f
Build
abcdefghiraj May 22, 2024
6250f0e
Merge pull request #131 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj May 22, 2024
8f552fa
Merge branch 'develop' into dependabot/npm_and_yarn/develop/types/nod…
abcdefghiraj May 22, 2024
8194f31
Merge pull request #154 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj May 22, 2024
fc9507c
Merge pull request #150 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj May 22, 2024
31e9b1d
Merge pull request #140 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj May 22, 2024
e0b3293
Bump version and update eslint
abcdefghiraj May 22, 2024
4dab9dc
Bump @types/lodash from 4.14.201 to 4.17.4
dependabot[bot] May 27, 2024
984ba53
Bump eslint-plugin-jest from 27.9.0 to 28.5.0
dependabot[bot] May 27, 2024
e8bb002
Bump execa from 7.2.0 to 9.1.0
dependabot[bot] May 27, 2024
b3d00d9
Bump prettier from 3.2.5 to 3.3.0
dependabot[bot] Jun 3, 2024
955dd60
Merge branch 'main' into develop
abcdefghiraj Jun 4, 2024
70c0cfe
Merge branch 'develop' into dependabot/npm_and_yarn/develop/types/lod…
abcdefghiraj Jun 4, 2024
3ea271e
Merge pull request #156 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj Jun 4, 2024
800753e
Merge branch 'develop' into dependabot/npm_and_yarn/develop/eslint-pl…
abcdefghiraj Jun 4, 2024
77bb9df
Merge pull request #157 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj Jun 4, 2024
ce0e0d4
Merge branch 'develop' into dependabot/npm_and_yarn/develop/execa-9.1.0
abcdefghiraj Jun 4, 2024
1193167
Merge pull request #159 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj Jun 4, 2024
a531f1c
Merge branch 'develop' into dependabot/npm_and_yarn/develop/prettier-…
abcdefghiraj Jun 4, 2024
1fe386a
Merge pull request #160 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj Jun 4, 2024
2d4fc11
Bump ts-jest from 29.1.2 to 29.1.4
dependabot[bot] Jun 4, 2024
c885143
Merge pull request #161 from stark-contrast/dependabot/npm_and_yarn/d…
abcdefghiraj Jun 4, 2024
3ac1f6e
Bump version and build
abcdefghiraj Jun 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ COPY entrypoint.sh /stark_ga/entrypoint.sh
COPY dist /stark_ga/dist

# Install stark accessibility cli
RUN npm i -g @stark-lab-inc/accessibility-cli@0.7.0-beta.0 \
RUN npm i -g @stark-lab-inc/accessibility-cli@0.8.0-beta.0 \
&& stark-accessibility --version

# TODO: symlink /root/.local-chromium to $GITHUB_HOME/.local-chromium to avoid double install or remove install from this step.
Expand Down
3 changes: 2 additions & 1 deletion __tests__/parse-inputs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ describe('parseInput', () => {
puppeteerWaitUntil: ['load'],
scanDelay: '100',
skipErrors: false,
stealthMode: false
stealthMode: false,
disableFerryman: false
}

const inputs = parseInputs()
Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ inputs:
description: 'Run a cleanup if needed.'
required: false
default: 'echo "Nothing to cleanup"'
disable_ferryman:
description: "Enable ferryman on the scanner for optimised scans"
required: false
default: false
urls:
description: 'A list of URLs to be scanned, with each URL belonging to its own line. This value follows YAML conventions for multiline strings.'
required: true
Expand Down
Loading