Skip to content

Commit

Permalink
Update: [Actions] Bump used actions versions (#407)
Browse files Browse the repository at this point in the history
actions/checkout from v2 to v3
actions/setup-python from v1 to v4
TrueBrain/actions-flake8 from v1 to v2
OpenTTD/actions/annotation-check from v2 to v3
  • Loading branch information
glx22 committed Mar 5, 2023
1 parent 091eca8 commit ee6cdab
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 4

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/new_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.8
cache: 'pip'
- name: Install dependencies
run: |
pip install -U pip
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/new_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.8
cache: 'pip'
- name: Install dependencies
run: |
pip install -U pip
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Flake8
uses: TrueBrain/actions-flake8@v1
uses: TrueBrain/actions-flake8@v2
with:
path: request_access

Expand All @@ -25,9 +25,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Black
Expand All @@ -48,4 +48,4 @@ jobs:

steps:
- name: Check annotations
uses: OpenTTD/actions/annotation-check@v2
uses: OpenTTD/actions/annotation-check@v3

0 comments on commit ee6cdab

Please sign in to comment.