Skip to content

Commit

Permalink
update invocation of ruff to use new output-format option, update act…
Browse files Browse the repository at this point in the history
…ions, update base image
  • Loading branch information
jpetrucciani committed Oct 17, 2023
1 parent fbcc7f8 commit 95ff5ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: tag
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.0
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- id: var
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4.1.0
- name: setup python
uses: actions/setup-python@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.9-alpine
FROM python:3.11.6-alpine

LABEL "maintainer"="Jacobi Petrucciani <[email protected]>"

Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -eax
ruff --version

# shellcheck disable=2086
ruff --format "$3" $2 $1
ruff check --output-format "$3" $2 $1

0 comments on commit 95ff5ea

Please sign in to comment.