diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml index 34ad5f2d4d..c3fcf28d47 100644 --- a/.github/workflows/_test.yml +++ b/.github/workflows/_test.yml @@ -4,6 +4,7 @@ on: permissions: {} +name: Lint and run test suite jobs: lint-test: name: Lint Test @@ -89,6 +90,7 @@ jobs: - run: echo "All test jobs have completed successfully." coveralls-fin: + name: Submit coverage to Coveralls.io # Always run when all 'tests' jobs have finished even if they failed # TODO: Replace always() with a 'at least one job succeeded' expression if: always() diff --git a/.github/workflows/_test_sslib_main.yml b/.github/workflows/_test_sslib_main.yml index c8cf3107d9..45069f396b 100644 --- a/.github/workflows/_test_sslib_main.yml +++ b/.github/workflows/_test_sslib_main.yml @@ -4,6 +4,7 @@ on: permissions: {} +name: Test securesystemslib main branch jobs: sslib-main: name: Test securesystemslib main branch (not a merge blocker) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 1c3a414dd6..0078b495f0 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -11,6 +11,7 @@ permissions: name: Conformance jobs: conformance: + name: Conformance runs-on: ubuntu-latest steps: - name: Checkout conformance client diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 1400d25cf6..8033ea81c0 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -13,6 +13,7 @@ permissions: jobs: dependency-review: + name: Dependency review runs-on: ubuntu-latest steps: - name: 'Checkout Repository' diff --git a/.github/workflows/specification-version-check.yml b/.github/workflows/specification-version-check.yml index ed4f6bbe1f..6c89e2014d 100644 --- a/.github/workflows/specification-version-check.yml +++ b/.github/workflows/specification-version-check.yml @@ -10,6 +10,7 @@ permissions: {} jobs: # Get the version of the TUF specification the project states it supports get-supported-tuf-version: + name: Get TUF spec version supported by python-tuf runs-on: ubuntu-latest outputs: version: ${{ steps.get-version.outputs.version }} diff --git a/requirements/lint.txt b/requirements/lint.txt index 1ab9845122..4009445cde 100644 --- a/requirements/lint.txt +++ b/requirements/lint.txt @@ -6,9 +6,9 @@ # Lint tools # (We are not so interested in the specific versions of the tools: the versions # are pinned to prevent unexpected linting failures when tools update) -ruff==0.12.0 +ruff==0.12.1 mypy==1.16.1 -zizmor==1.9.0 +zizmor==1.11.0 # Required for type stubs freezegun==1.5.2