fix(deps): update module github.com/sigstore/sigstore-go to v0.6.1 [security] #1929
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
name: Actions pre submits | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
check-dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set Node.js 20 | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
- name: Rebuild the dist/ directory | |
working-directory: actions/installer | |
run: make package | |
- name: Compare the expected and actual dist/ directories | |
working-directory: actions/installer | |
id: diff | |
run: | | |
set -euo pipefail | |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then | |
echo "Detected uncommitted changes after build. See status below:" | |
git diff | |
exit 1 | |
fi | |
# If index.js was different from expected, upload the expected version as an artifact | |
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
if: ${{ failure() && steps.diff.conclusion == 'failure' }} | |
with: | |
name: dist | |
path: dist/ |