We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a95ac5b commit 99057b1Copy full SHA for 99057b1
.github/workflows/ci.yml
@@ -43,6 +43,15 @@ jobs:
43
- name: Install tools
44
run: |
45
gem install --no-document toys
46
+ - name: Hack perms
47
+ # Hack permissions to avoid a bundler issue.
48
+ # See https://github.com/actions/runner-images/issues/10215
49
+ # and https://github.com/rubygems/rubygems/issues/7983.
50
+ shell: bash
51
+ run: |
52
+ if [ -d /opt/hostedtoolcache/Ruby ]; then
53
+ chmod -R o-w /opt/hostedtoolcache/Ruby
54
+ fi
55
- name: Test ${{ matrix.task }}
56
57
toys ci -v --only ${{ matrix.task }} --github-event-name=${{ github.event_name }} --github-event-payload=${{ github.event_path }}
0 commit comments