Build: Bump the github-actions group with 3 updates
[jquery.git] / .github / workflows / verify-release.yml
blobda0c6e568a1470a4d79e9bdfcc1696b909f7f1c7
1 name: Reproducible Builds
2 on:
3   push:
4     # On tags
5     tags:
6       - '*'
7   # Or manually
8   workflow_dispatch:
9     inputs:
10       version:
11         description: 'Version to verify (>= 4.0.0-rc.1)'
12         required: false
15 jobs:
16   run:
17     name: Verify release
18     runs-on: ubuntu-latest
19     # skip on forks
20     if: ${{ github.repository == 'jquery/jquery' }}
21     env:
22       NODE_VERSION: 20.x
23     steps:
24       - name: Checkout
25         uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
27       - name: Use Node.js ${{ env.NODE_VERSION }}
28         uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
29         with:
30           node-version: ${{ env.NODE_VERSION }}
32       - name: Install dependencies
33         run: npm ci
35       - run: npm run release:verify
36         env:
37           VERSION: ${{ github.event.inputs.version || github.ref_name }}