Bump step-security/harden-runner from 2.13.2 to 2.13.3 #53
Workflow file for this run
This file contains hidden or 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: sig | |
| on: [push, pull_request] | |
| jobs: | |
| sig: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| ruby-version: ruby | |
| - name: Install dependencies | |
| run: | | |
| bundle config set with 'sig' | |
| bundle install | |
| - name: Run RBS test, annotate and confirm | |
| run: bundle exec rake rbs:{test,annotate,confirm} |