diff --git a/docs/site/content/docs/guides/ci-vendors/github-actions.mdx b/docs/site/content/docs/guides/ci-vendors/github-actions.mdx index 0195f014e08b8..6f4f15e6e8853 100644 --- a/docs/site/content/docs/guides/ci-vendors/github-actions.mdx +++ b/docs/site/content/docs/guides/ci-vendors/github-actions.mdx @@ -229,7 +229,7 @@ Create a file called `.github/workflows/ci.yml` in your repository with the foll -## Remote Caching +## Remote Caching with Vercel Remote Cache To use Remote Caching with GitHub Actions, add the following environment variables to your GitHub Actions workflow to make them available to your `turbo` commands. @@ -294,9 +294,9 @@ jobs: -## Caching with GitHub actions/cache +## Remote Caching with GitHub actions/cache -The following steps exemplify how you could use [actions/cache](https://github.com/actions/cache) to cache your monorepo artifacts on GitHub. +The following steps show how you could use [actions/cache](https://github.com/actions/cache) to cache your monorepo artifacts on GitHub. @@ -318,7 +318,7 @@ Example `package.json` with a `build` script: -Configure your GitHub pipeline with a step which utilizes the `actions/cache@v4` action before the build steps of your CI file. +Configure your GitHub pipeline with a step which uses the `actions/cache@v4` action before the build steps of your CI file. - Make sure that the `path` attribute set within the `actions/cache` action matches the output location above. In the example below, `path` was set to `.turbo`. - State the cache key for the current run under the `key` attribute. In the example below, we used a combination of the runner os and GitHub sha as the cache key.