Try   HackMD

SPEC-8: Securing the Release Process


title: "SPEC 8 — Securing the Release Process"
number: 8
date: 2024-06-04
author:


Description

Securing the Open Source supply chain (OSSC) is becoming a more relevant concern in recent years, with examples of sophisticated attacks against the ecosystem (e.g., the 2024 xz utils backdoor) and malware attacks on PyPI highlighting the need for supply chain security to be taken seriously. The Python Software Foundation (PSF) is also taking the importance of the OSSC seriously, as demonstrated by the creation of the PSF Security Developer in Residence position in 2023.

With the creation of the Supply-chain Levels for Software Artifacts (SLSA) framework and OpenID Connect (OIDC) standard being more widely adopted there are now high level developer tools, maintained by professional security teams, that are available with clear recommendations on how to use them.

This SPEC outlines the requirements for practically adopting these security tools and recommendations with a focus on securely publishing release artifacts. Securely building release artifacts will be covered in a later SPEC. This set of recommendations complements the recommendations from SPEC 6 — Keys to the Castle.

This SPEC is written with GitHub in mind, note these recommendations still apply with other services such as GitLab and we refer project to these services' documentations and guidelines.

Implementation

With a focus on securing the release artifact distribution process, the following processes and standards should be adopted.

Document the release process

The release process should be clearly and fully documented in the developer documentation and describe each step to make a release and the permissions required to do so.

Hardening workflow environment permissions

Workflows that publish release artifacts should have run triggers that require intentional actions by maintainers (e.g., on workflow_dispatch in GitHub Actions) and require multiple maintainers to approve the workflow to run (c.f. "Use GitHub Actions environments" section below). This is to safeguard the project from any one maintainer having the ability to commit to the default branch and make a release directly.

It is also strongly recommended that the repository requires signed commits so that all releases have a verified commit to which they correspond. The branch from which the release is made should also be protected.

Restrict permissions in CI runners to the minimum required

To restrict the attack surface area of arbitrary code execution in CI runners, the default permissions the runners have should be restricted to the minimum possible (read access). In the GitHub Action workflow, this is accomplished by defining the following workflow global permissions block before any jobs are defined.

permissions:
  content: read

Elevating permissions beyond this should be done at the job level by redefining the permissions block in the job.

Restrict permitted actions in workflows

GitHub allows to restrict the actions that workflows can use via repositories settings at https://github.com/ORG/PROJECT/settings/actions. A reasonable default setup is to:

  • allow actions from the repository itself and actions created by GitHub,
  • as well as an allow list of actions from third party repositories.
    ​​OWNER/REPOSITORY@*
    

Consult Managing GitHub Actions permissions for your repository for more details.

Use GitHub Actions environments

Use a GitHub Actions environment

environment:
    name: publish-package

and enforce additional review by at least one other maintainer to run a GitHub Actions workflow that publishes to PyPI. Additional reviewer requirements can be configured per GitHub Actions environment under https://github.com/ORG/PROJECT/settings/environments/ in the "Deployment protection rules" section.

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →

Pin GitHub Actions release workflows to their full release commit SHAs

GitHub actions must be pinned using full commit SHA corresponding to the release version being used. Using versions or small hashes is susceptible to attacks.

- uses: actions/some-action@1fe14e04876783b259436247a3898d2fe7d5548f #vX.Y.Z

Dependabot can be used to automatically update the hashes. It is important that this happens as part of a reviewed process.

# .github/dependabot.yml
version: 2
updates:
  # Maintain dependencies for GitHub Actions
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "monthly"
    groups:
      actions:
        patterns:
          - "*"

Adopt SLSA through use of GitHub Attestations

A component of SLSA is software attestation which allows for public validation of software artifacts and provenance. GitHub provides the actions/attest-build-provenance GitHub Action which implements SLSA to generate signed build provenance attestations for workflow artifacts. Attestations are publishes to the project GitHub under https://github.com/ORG/PROJECT/attestations/.

- uses: actions/attest-build-provenance@<full action commit SHA> # vX.Y.Z
  with:
    subject-path: 'dist/<package name>-*'

GitHub has also added the gh attestation verify command to the GitHub CLI utility, which verifies the integrity and provenance of an artifact using its associated cryptographically signed attestations. This can be used by individual users and also in GitHub Actions workflows where the GitHub CLI utility is installed by default.

- name: Verify sdist artifact attestation
  env:
    GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  run: gh attestation verify dist/<package name>-*.tar.gz --repo ${{ github.repository }}

- name: Verify wheel artifact attestations
  env:
    GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  run: gh attestation verify dist/<package name>-*.whl --repo ${{ github.repository }}

Adopt OIDC through the use of PyPI Trusted Publishers

Trusted Publishers provide a way to securely establish a short lived authentication token between a project repository and a distribution platform — such as PyPI. It replaces the need to use a long lived token to authenticate, reducing the security risks associated with authentication tokens (e.g., tokens being compromised, the need to rotate tokens).

Trusted Publishers can be used in GitHub Actions by using the pypa/gh-action-pypi-publish GitHub Action defaults in a GitHub Actions environment.

jobs:
  publish:
    name: Publish release to PyPI
    runs-on: ubuntu-latest
    environment: publish-package
    permissions:
      # IMPORTANT: this permission is mandatory for trusted publishing
      id-token: write
    steps:
      # retrieve your distributions here
      # ...

      - name: Publish distribution to PyPI
        uses: pypa/gh-action-pypi-publish@<full action commit SHA> # vX.Y.Z
        with:
          print-hash: true

Example workflow

The following is a complete example of workflow which can be used as a starting point:

name: publish distributions

on:
  workflow_dispatch:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

permissions:
  contents: read

jobs:

  publish:
    name: Publish Python distribution to PyPI
    runs-on: ubuntu-latest
    permissions:
      id-token: write
      attestations: write
    environment:
      name: publish-package

    steps:
    # - name: Collect built artifacts
    # ...

    - name: Generate artifact attestation for sdist and wheels
      uses: actions/attest-build-provenance@<full action commit SHA> # vX.Y.Z
      with:
        subject-path: 'dist/<package name>-*'

    - name: Verify sdist artifact attestation
      env:
        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      run: gh attestation verify dist/<package name>-*.tar.gz --repo ${{ github.repository }}

    - name: Verify wheel artifact attestations
      env:
        GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      run: gh attestation verify dist/<package name>-*.whl --repo ${{ github.repository }}

    - name: Publish distribution to PyPI
      uses: pypa/gh-action-pypi-publish@<full action commit SHA> # vX.Y.Z
      with:
        print-hash: true

Notes