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 91cbcc1 commit c704118Copy full SHA for c704118
1 file changed
.github/workflows/linkchecker.yml
@@ -12,11 +12,12 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v2
16
- - name: Set up Ruby 2.6
17
- uses: actions/setup-ruby@v1
+ - uses: actions/checkout@v4
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
18
with:
19
- ruby-version: 2.6.x
+ ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
20
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
21
- name: Check links
22
#FIXME Need to allow duplicates (same links on the same page)
23
run: |
0 commit comments