Skip to content

Commit

Permalink
Upgrade GitHub actions across workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jdufresne committed Jun 24, 2022
1 parent 1d9dee3 commit 6e0dbf6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/codespell-private.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- 3.9
name: Python ${{ matrix.python-version }} test
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: sudo apt-get install libaspell-dev aspell-en
Expand All @@ -41,9 +41,11 @@ jobs:
make-check-dictionaries:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/checkout@v3
- name: Install general dependencies
run: pip install -U pip wheel # upgrade to latest pip find 3.5 wheels; wheel to avoid errors
- name: Install codespell dependencies
Expand All @@ -54,6 +56,6 @@ jobs:
flake8-annotation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Flake8 with annotations
uses: TrueBrain/actions-flake8@v2
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
Expand Down

0 comments on commit 6e0dbf6

Please sign in to comment.