build(deps): bump docker/setup-buildx-action from 3.6.1 to 3.7.0 #862
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
check_packs: | |
name: check packs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
github.com:443 | |
files.pythonhosted.org:443 | |
github.com:443 | |
pypi.org:443 | |
- name: Checkout panther-analysis | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0 | |
- name: Set python version | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 #v5.2.0 | |
with: | |
python-version: "3.11" | |
- name: Install panther_analysis_tool | |
run: pip install panther_analysis_tool | |
- name: Check packs | |
continue-on-error: true | |
id: check-packs | |
run: | | |
panther_analysis_tool check-packs 2> errors.txt || true | |
# run again to get exit code | |
panther_analysis_tool check-packs || echo "errors=`cat errors.txt`" >> $GITHUB_OUTPUT | |
- name: Comment PR | |
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 | |
if: ${{ steps.check-packs.outputs.errors }} | |
with: | |
mode: upsert | |
message: | | |
:scream: | |
looks like some things could be wrong with the packs | |
```diff | |
${{ steps.check-packs.outputs.errors }} | |
``` | |
comment_tag: check-packs | |
- name: Delete comment | |
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 | |
if: ${{ !steps.check-packs.outputs.errors }} | |
with: | |
mode: delete | |
message: | | |
:scream: | |
looks like some things could be wrong with the packs | |
```diff | |
${{ steps.check-packs.outputs.errors }} | |
``` | |
comment_tag: check-packs |