fix: update jruby download URLs from S3 to GitHub Releases (#4799)

The JRuby project migrated their downloads from S3 to GitHub Releases,
causing the old S3 URLs to return HTTP 403 Forbidden and breaking test
fixture image builds.

Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
This commit is contained in:
Alex Goodman 2026-04-20 09:12:09 -04:00 committed by GitHub
parent 076fb211cc
commit 89e4e609d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
FROM --platform=linux/amd64 alpine:latest AS builder FROM --platform=linux/amd64 alpine:latest AS builder
RUN wget -O jruby_windows_9_3_15_0.exe https://s3.amazonaws.com/jruby.org/downloads/9.3.15.0/jruby_windows_9_3_15_0.exe RUN wget -O jruby_windows_9_3_15_0.exe https://github.com/jruby/jruby/releases/download/9.3.15.0/jruby_windows_9_3_15_0.exe
FROM scratch FROM scratch

View File

@ -73,7 +73,7 @@ RUN dotnet publish -r $RUNTIME --no-restore -o /app
# > Humanizer.Core.zh-Hant 2.14.1 # > Humanizer.Core.zh-Hant 2.14.1
# lets pull in a file that is not related at all and in fact is not a .NET binary either (this should be ignored) # lets pull in a file that is not related at all and in fact is not a .NET binary either (this should be ignored)
RUN wget -O /app/jruby_windows_9_3_15_0.exe https://s3.amazonaws.com/jruby.org/downloads/9.3.15.0/jruby_windows_9_3_15_0.exe RUN wget -O /app/jruby_windows_9_3_15_0.exe https://github.com/jruby/jruby/releases/download/9.3.15.0/jruby_windows_9_3_15_0.exe
FROM busybox FROM busybox
WORKDIR /app WORKDIR /app