Skip to content

Commit 8180585

Browse files
committed
Remove actions/cache, just rely on ruby/node actions for caching
1 parent ed90c55 commit 8180585

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

.github/workflows/ci.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,12 @@ jobs:
5353
with:
5454
# Install gems/npm packages from GitHub fails without this
5555
persist-credentials: false
56-
- name: Do some action caching
57-
uses: actions/cache@v3
58-
with:
59-
path: vendor/bundle
60-
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('**/Gemfile.lock') }}
61-
restore-keys: |
62-
${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-
6356
- name: Install libpq-dev
6457
run: sudo apt-get -yqq install libpq-dev
6558
- name: Set up Node
6659
uses: actions/setup-node@v3
60+
with:
61+
cache: 'yarn'
6762
- name: Set up Ruby ${{ matrix.ruby }}
6863
uses: ruby/setup-ruby@v1
6964
with:

.github/workflows/examples.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,12 @@ jobs:
5151
mongodb-version: 4.0
5252
- name: Check out repository code
5353
uses: actions/checkout@v4
54-
- name: Do some action caching
55-
uses: actions/cache@v3
56-
with:
57-
path: vendor/bundle
58-
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('**/Gemfile.lock') }}
59-
restore-keys: |
60-
${{ runner.os }}-gems-${{ matrix.ruby }}-${{ matrix.rails }}-
6154
- name: Install libpq-dev
6255
run: sudo apt-get -yqq install libpq-dev
56+
- name: Set up Node
57+
uses: actions/setup-node@v3
58+
with:
59+
cache: 'yarn'
6360
- name: Set up Ruby ${{ matrix.ruby }}
6461
uses: ruby/setup-ruby@v1
6562
with:

0 commit comments

Comments
 (0)