Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Super-Linter
uses: github/super-linter@v3.15.5
uses: super-linter/super-linter@v8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_MARKDOWN: false
# Disabled for conflicts with the isort version used in pre-commit
# you can re-enable it if you align your local isort with
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Runs a single command using the runners shell
- name: Python security check using Bandit
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: |
echo UID=$(id -u) >> .env
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
# to checkout tags and branches too (eg. to auto-version your deployments)
# you need to pass the `fetch-depth: 0` option. eg
#
# uses: actions/checkout@v2
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Run tests.
run: |
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
container: python:3.9
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Run commit hooks.
run: |
Expand All @@ -69,7 +69,7 @@ jobs:

# Store (expiring) logs on failure.
# Retrieve artifacts via `gh run download`.
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: pre-commit.log
Expand Down