Skip to content

Commit

Permalink
Actions version upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
rahearn committed Jan 10, 2025
1 parent b8ab555 commit 896535b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
database_url: ${{ steps.setup.outputs.database_url }}

- name: Run OWASP Full Scan
uses: zaproxy/action-full-scan@v0.10.0
uses: zaproxy/action-full-scan@v0.12.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
docker_name: 'ghcr.io/zaproxy/zaproxy:weekly'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
database_url: ${{ steps.setup.outputs.database_url }}

- name: Run OWASP Baseline Scan
uses: zaproxy/action-baseline@v0.12.0
uses: zaproxy/action-baseline@v0.14.0
with:
docker_name: 'ghcr.io/zaproxy/zaproxy:weekly'
target: 'http://localhost:3000/'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Comment on pull request
if: failure()
uses: actions/github-script@v4
uses: actions/github-script@v7
with:
script: |
const output = `Pa11y Failures detected
Expand All @@ -61,7 +61,7 @@ jobs:
\`\`\`
</details>`;

github.issues.createComment({
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:

- name: Comment on pull request
if: failure()
uses: actions/github-script@v4
uses: actions/github-script@v7
with:
script: |
const output = `SSP assembly detected changes that aren't checked in.
Run \`bin/trestle assemble-ssp-json\` to ensure markdown changes are reflected in your SSP`;
github.issues.createComment({
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
Expand Down

0 comments on commit 896535b

Please sign in to comment.