Skip to content

Commit

Permalink
Update actions/checkout version to v3
Browse files Browse the repository at this point in the history
The version 3.x appears to be due to the following:
- actions/checkout#689

There have been no breaking changes,
and we seem to have no problem keeping up with the latest version.
  • Loading branch information
ydah committed Oct 30, 2022
1 parent 3c97746 commit 74705a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Yamllint
uses: karancode/yamllint-github-action@master
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
name: Confirm config and documentation
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
Expand All @@ -34,7 +34,7 @@ jobs:
- spec
name: "Ruby ${{ matrix.ruby }}: ${{ matrix.task }}"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
Expand All @@ -50,7 +50,7 @@ jobs:
- spec
name: "Edge RuboCop: ${{ matrix.task }}"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use latest RuboCop from `master`
run: |
echo "gem 'rubocop', github: 'rubocop-hq/rubocop'" > Gemfile.local
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
name: RSpec 4
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use latest RSpec 4 from `4-0-dev` branch
run: |
sed -e '/rspec/d' -i Gemfile
Expand Down

0 comments on commit 74705a9

Please sign in to comment.