We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b10cfb commit 18e9444Copy full SHA for 18e9444
.github/workflows/check_resources_url.yml
@@ -7,12 +7,11 @@ jobs:
7
build:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v2
11
- - name: Set up Ruby 2.6
12
- uses: actions/setup-ruby@v1
+ - uses: actions/checkout@v3
+ - uses: ruby/setup-ruby@v1
13
with:
14
- ruby-version: 2.6.x
15
- - name: Checks
16
- run: |
+ ruby-version: '3.0' # Not needed with a .ruby-version file
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
+ - run: |
17
gem install awesome_bot
18
awesome_bot docs/resources.md --allow-redirect
0 commit comments