diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a135621..54216c7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/security-bandit.yml b/.github/workflows/security-bandit.yml index e357e36..6de2048 100644 --- a/.github/workflows/security-bandit.yml +++ b/.github/workflows/security-bandit.yml @@ -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 @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f19c9fb..1189085 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: | @@ -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: | @@ -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