Skip to content

Commit

Permalink
updating checkout and python
Browse files Browse the repository at this point in the history
  • Loading branch information
davidslusser committed Mar 11, 2024
1 parent 580c456 commit 60596ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
name: "ruff"
steps:
- uses: davidslusser/actions_python_ruff@v1.0.0
- uses: davidslusser/actions_python_ruff@v1.0.1
```
<br/>

Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
name: "ruff"
steps:
- uses: davidslusser/actions_python_ruff@v1.0.0
- uses: davidslusser/actions_python_ruff@v1.0.1
with:
src: "src"
options: "--cov=src"
Expand All @@ -42,7 +42,7 @@ jobs:

## Inputs
- **src:** source directory of code to check (defaults to "`.`")
- **options:** optional flags/parameters used in pytest command
- **options:** optional flags/parameters used in ruff command
- **pip_install_command:** pip install command (defaults to "`pip install ruff`")
- **python_version:** version of python to run workflow with (defaults to "`3.x`")

Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Setup Python ${{ inputs.python_version }}"
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python_version }}

Expand Down

0 comments on commit 60596ad

Please sign in to comment.