We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b131ba commit ba18e24Copy full SHA for ba18e24
.github/workflows/binary-gems.yml
@@ -101,6 +101,12 @@ jobs:
101
env:
102
PGVERSION: ${{ matrix.PGVERSION }}
103
steps:
104
+ # Workaround for broken ubuntu-latest image.
105
+ # See https://github.com/Shopify/ruby-lsp/issues/3942
106
+ - name: Remove pre-installed Ruby 4.0
107
+ if: matrix.os == 'ubuntu-latest' && matrix.ruby == '4.0'
108
+ run: rm -rf /opt/hostedtoolcache/Ruby/4.0*
109
+
110
- uses: actions/checkout@v4
111
- name: Set up Ruby
112
if: matrix.platform != 'x86-mingw32'
0 commit comments