Skip to content

Commit d1f01da

Browse files
committed
have the lint job use newest caches instead of oldest
1 parent 673c85a commit d1f01da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint-js-and-ruby.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/cache@v4
4040
with:
4141
path: vendor/bundle
42-
key: package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-oldest
42+
key: package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-newest
4343
- name: Install Node modules with Yarn for renderer package
4444
run: |
4545
yarn install --no-progress --no-emoji --frozen-lockfile
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/cache@v4
6161
with:
6262
path: spec/dummy/vendor/bundle
63-
key: dummy-app-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }}-oldest
63+
key: dummy-app-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }}-newest
6464
- name: Install Ruby Gems for dummy app
6565
run: |
6666
cd spec/dummy

0 commit comments

Comments
 (0)