From 202e568de4bb1df60db2c07fbae184dd43285d75 Mon Sep 17 00:00:00 2001 From: Clement Yan Date: Fri, 6 Oct 2023 16:08:41 +0800 Subject: [PATCH] Update alpine version for sherlock workflow (#5718) **What's the problem this PR addresses?** The Sherlock GitHub Action has been failing because the Alpine version specified for the Docker container only has packages for node 16. **How did you fix it?** Updated the Alpine version **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed. --- scripts/actions/local-yarn-command/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/actions/local-yarn-command/Dockerfile b/scripts/actions/local-yarn-command/Dockerfile index 81300360c230..7f7ce2cfb3a9 100644 --- a/scripts/actions/local-yarn-command/Dockerfile +++ b/scripts/actions/local-yarn-command/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.15 +FROM alpine:3.18 LABEL "com.github.actions.name"="local-yarn-command" LABEL "com.github.actions.description"="Run a Yarn command using the checked-in build"