No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-20 16:39:20 -07:00
checkout Sync actions from github/github-drives@1d54db8 2026-07-20 23:38:06 +00:00
commit Sync actions from github/github-drives@1d54db8 2026-07-20 23:38:06 +00:00
vendor Sync actions from github/github-drives@1d54db8 2026-07-20 23:38:06 +00:00
README.md Sync binaries to latest main 2026-06-19 19:58:36 +00:00

GitHub Drives (Private Preview)

Persistent storage for GitHub Actions workflows.

⚠️ Private preview. Access is gated. Contact the drives team to enroll your repository.

Usage

jobs:
  build:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      id-token: write
      drives: write   # use `read` if you only run checkout (no commit)
    steps:
      - name: Checkout Drive
        uses: actions/gh-drives-preview/checkout@main
        with:
          drive-name: default

      # ... your work ...

      - name: Commit Drive
        uses: actions/gh-drives-preview/commit@main
        with:
          drive-name: default
  • checkout — creates or loads a persistent drive into your workspace.
  • commit — saves changes back to storage. Omit to use read-only.

Requirements

  • ubuntu-latest runner (Linux only during preview)
  • Repository enrolled in the private preview