From fa9dc1768aff029443a10bdb1f84c324fb17cc43 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 07:39:49 -0700 Subject: [PATCH] Update alpine Docker tag to v3.20 (#101) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | alpine | stage | minor | `3.19` -> `3.20` | --- ### Configuration 📅 **Schedule**: Branch creation - "after 6am on monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/earthly/actions-setup). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Earthfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Earthfile b/Earthfile index e98e4f4..0d26376 100644 --- a/Earthfile +++ b/Earthfile @@ -36,7 +36,7 @@ compile: SAVE ARTIFACT node_modules AS LOCAL node_modules test-compile-was-run: - FROM alpine:3.19 + FROM alpine:3.20 COPY dist /from-git COPY +compile/dist /from-compile RUN diff -r /from-git /from-compile >/dev/null || (echo "dist and +compile/dist are different, did you forget to run earthly +compile?" && exit 1) @@ -64,7 +64,7 @@ test-run: RUN grep 'Found tool in cache' output2 lint-newline: - FROM alpine:3.19 + FROM alpine:3.20 WORKDIR /everything COPY . . # test that line endings are unix-style