Skip to content

Commit

Permalink
Merge pull request #10454 from koic/use_actions_checkout_version_3
Browse files Browse the repository at this point in the history
Use `actions/checkout` version 3
  • Loading branch information
koic committed Mar 15, 2022
2 parents 577d2f6 + 252eafc commit 5b6e3a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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
2 changes: 1 addition & 1 deletion .github/workflows/rubocop.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "TMPDIR=$env:RUNNER_TEMP" >> $GITHUB_ENV
git config --system core.autocrlf false
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spell_checking.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand All @@ -26,7 +26,7 @@ jobs:
name: Check spelling of all files in commit with misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install
run: wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: Misspell
Expand Down

0 comments on commit 5b6e3a2

Please sign in to comment.