Skip to content

Commit

Permalink
Merge pull request #132 from OwlPlug/dependabot/github_actions/master…
Browse files Browse the repository at this point in the history
…/actions/github-script-7.0.1

chore(deps): bump actions/github-script from 6.4.1 to 7.0.1
  • Loading branch information
DropSnorz authored Nov 21, 2023
2 parents a1a5514 + ddc20bc commit 15debaf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/feedback-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- run: echo 'The triggering workflow passed'
- name: 'Download pre analysis artifacts'
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
with:
script: |
const fs = require('fs');
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Sanitize validation logs
id: sanitize-validate-log
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
with:
script: |
const fs = require('fs')
Expand All @@ -60,7 +60,7 @@ jobs:
.replaceAll(">", "")
- name: Publish validation success report
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
if: ${{ github.event.workflow_run.conclusion == 'success' }}
env:
PR_NUMBER: ${{ env.pr_number }}
Expand All @@ -87,7 +87,7 @@ jobs:
})
- name: Publish validation error report
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
env:
PR_NUMBER: ${{ env.pr_number }}
Expand All @@ -114,7 +114,7 @@ jobs:
})
- name: Label success job
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
if: ${{ github.event.workflow_run.conclusion == 'success' }}
env:
PR_NUMBER: ${{ env.pr_number }}
Expand All @@ -136,7 +136,7 @@ jobs:
}).catch((e) => {})
- name: Label failure job
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
env:
PR_NUMBER: ${{ env.pr_number }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
github.event.workflow_run.conclusion == 'success'
steps:
- name: 'Download pre analysis artifacts'
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
with:
script: |
const fs = require('fs');
Expand All @@ -44,7 +44,7 @@ jobs:
run: unzip pr-artifacts.zip

- name: 'Verify bundles.json file and URL format'
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
with:
script: |
const fs = require('fs')
Expand All @@ -65,7 +65,7 @@ jobs:
}
- name: 'Verify bundles.json size'
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
env:
PR_NUMBER: ${{ env.pr_number }}
with:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
files: "${{join(fromJSON(env.files_json),'\n')}}"

- name: Publish AV report
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v6
env:
VT_OUTPUT: ${{ steps.vt-scan.outputs.analysis }}
PR_NUMBER: ${{ env.pr_number }}
Expand Down

0 comments on commit 15debaf

Please sign in to comment.