File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/actions/install-ruby Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,20 +61,20 @@ runs:
61
61
env :
62
62
GEMFILE : ${{ env.BUNDLE_GEMFILE || 'Gemfile' }}
63
63
with :
64
- path : ./vendor/bundle
64
+ path : .. /vendor/bundle
65
65
key : bundler-ruby-${{ inputs.version }}-${{ inputs.openssl-version }}-${{ hashFiles(env.Gemfile, 'webauthn.gemspec') }}
66
66
67
67
- name : Install dependencies
68
68
if : steps.cache-bundler-restore.outputs.cache-hit != 'true'
69
69
shell : bash
70
70
run : |
71
- bundle config set --local path ./vendor/bundle
71
+ bundle config set --local path .. /vendor/bundle
72
72
bundle install
73
73
74
74
- name : Save Bundler Install cache
75
75
if : steps.cache-bundler-restore.outputs.cache-hit != 'true'
76
76
id : cache-bundler-save
77
77
uses : actions/cache/save@v4
78
78
with :
79
- path : ./vendor/bundle
79
+ path : .. /vendor/bundle
80
80
key : ${{ steps.cache-bundler-restore.outputs.cache-primary-key }}
You can’t perform that action at this time.
0 commit comments