From f50b981a327081a4739cb74134220d1e957edc11 Mon Sep 17 00:00:00 2001 From: koogawa Date: Thu, 31 Oct 2019 09:46:14 +0900 Subject: [PATCH] Add Ruby Gem example --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index e6d5923..b7d5e27 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,16 @@ jobs: key: ${{ runner.os }}-maven ``` +### Ruby - Gem +```yaml +- uses: actions/cache@preview + with: + path: vendor/bundle + key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} + restore-keys: | + ${{ runner.os }}-gem- +``` + ## Cache Limits Individual caches are limited to 200MB and a repository can have up to 2GB of caches. Once the 2GB limit is reached, older caches will be evicted based on when the cache was last accessed.