diff --git a/.github/workflows/checksum.yml b/.github/workflows/checksum.yml index 5ced75e2..db3b0b5f 100644 --- a/.github/workflows/checksum.yml +++ b/.github/workflows/checksum.yml @@ -23,7 +23,7 @@ on: jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checksum run: | diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 849c356a..893badc9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,18 +14,24 @@ on: jobs: lint: if: "!contains(github.event.head_commit.message, '[skip lint]')" - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 + with: + # super-linter needs the full git history to get the + # list of files that changed across commits + fetch-depth: 0 - name: Super-Linter - uses: super-linter/super-linter/slim@v5 + uses: super-linter/super-linter/slim@v7 env: FILTER_REGEX_INCLUDE: .*(\.py|\.md|\.yml)$ FILTER_REGEX_EXCLUDE: .*/deps/.* VALIDATE_NATURAL_LANGUAGE: false VALIDATE_PYTHON_BLACK: false + # To report GitHub Actions status checks + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Bandit run: |