Skip to content

Commit

Permalink
Fix lint and release workflows gh-actions warnings
Browse files Browse the repository at this point in the history
by upgrading them to current versions.
  • Loading branch information
JOJ0 committed Sep 10, 2024
1 parent 711cc93 commit 817ca13
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
name: Lint with flake8
steps:
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run flake8
uses: py-actions/flake8@v2
uses: py-actions/flake8@v2.3.0
with:
exclude: "setup.py"

6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
- name: "Get latest release"
id: last_release
uses: InsonusK/get-latest-release@v1.0.1
uses: InsonusK/get-latest-release@v1.1.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
exclude_types: ""
Expand Down

0 comments on commit 817ca13

Please sign in to comment.