Skip to content

Commit

Permalink
ci: bump actions to support node20
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru committed Jul 29, 2024
1 parent b55e04b commit fcf30b7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- run: black . --check --diff
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- run: black . --check --diff

0 comments on commit fcf30b7

Please sign in to comment.