Skip to content

Commit

Permalink
Update earthly/dind Docker tag to alpine-3.19-docker-25.0.3-r2 (main)…
Browse files Browse the repository at this point in the history
… (#3993)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| earthly/dind | | patch | `alpine-3.19-docker-25.0.3-r1` ->
`alpine-3.19-docker-25.0.3-r2` |
| earthly/dind | final | patch | `alpine-3.19-docker-25.0.3-r1` ->
`alpine-3.19-docker-25.0.3-r2` |
| earthly/dind | stage | patch | `alpine-3.19-docker-25.0.3-r1` ->
`alpine-3.19-docker-25.0.3-r2` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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 these
updates again.

---

- [ ] <!-- rebase-check -->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/earthly).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Apr 7, 2024
1 parent 740d2d2 commit 77041fa
Show file tree
Hide file tree
Showing 20 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ lint-scripts:
earthly-script-no-stdout:
# This validates the ./earthly script doesn't print anything to stdout (it should print to stderr)
# This is to ensure commands such as: MYSECRET="$(./earthly secrets get -n /user/my-secret)" work
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
RUN apk add --no-cache --update bash
COPY earthly .earthly_version_flag_overrides .

Expand Down
2 changes: 1 addition & 1 deletion ast/tests/with-docker-compose.ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"args": [
"DIND_IMAGE",
"=",
"earthly/dind:alpine-3.19-docker-25.0.3-r1"
"earthly/dind:alpine-3.19-docker-25.0.3-r2"
],
"name": "ARG"
}
Expand Down
2 changes: 1 addition & 1 deletion ast/tests/with-docker.ast.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"--global",
"DIND_IMAGE",
"=",
"earthly/dind:alpine-3.19-docker-25.0.3-r1"
"earthly/dind:alpine-3.19-docker-25.0.3-r2"
],
"name": "ARG"
}
Expand Down
2 changes: 1 addition & 1 deletion earthfile2llb/with_docker_run_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
dockerdWrapperPath = "/var/earthly/dockerd-wrapper.sh"
dockerAutoInstallScriptPath = "/var/earthly/docker-auto-install.sh"
composeConfigFile = "compose-config.yml"
suggestedDINDImage = "earthly/dind:alpine-3.19-docker-25.0.3-r1"
suggestedDINDImage = "earthly/dind:alpine-3.19-docker-25.0.3-r2"
)

// DockerLoadOpt holds parameters for WITH DOCKER --load parameter.
Expand Down
8 changes: 4 additions & 4 deletions inputgraph/testdata/with-docker/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@ load-target:
SAVE IMAGE saved:latest

with-docker-load:
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
WITH DOCKER --load saved:latest=+load-target
RUN echo "loaded"
END

with-docker-load-no-alias:
BUILD +load-target
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
WITH DOCKER --load +load-target
RUN echo "loaded"
END

with-docker-load-args:
BUILD +load-target
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
WITH DOCKER --load foo=(+load-target --foo=2)
RUN echo "loaded"
END

with-docker-load-remote:
BUILD +load-target
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
WITH DOCKER --load foo=github.com/earthly/earthly:6610b73131f94cbe594dba3b90665748f21a9b8d+license
RUN echo "loaded"
END
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.7
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

fail-with-docker-compose:
WORKDIR /test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

push:
ARG ACCT_ID
Expand Down
2 changes: 1 addition & 1 deletion tests/cloud-push-pull/azure-container-registry.earth
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

push:
RUN date | md5sum | head -c 32 > motd
Expand Down
2 changes: 1 addition & 1 deletion tests/cloud-push-pull/google-artifact-repository.earth
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

push:
RUN date | md5sum | head -c 32 > motd
Expand Down
2 changes: 1 addition & 1 deletion tests/cloud-push-pull/google-container-registry.earth
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

push:
RUN date | md5sum | head -c 32 > motd
Expand Down
2 changes: 1 addition & 1 deletion tests/ssh.earth
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test:
RUN --ssh test -n "$SSH_AUTH_SOCK" && ssh-add -l | grep 'rsa-key-from-earthly-tests'

test-with-docker:
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
RUN apk --update add openssh-client
WITH DOCKER
RUN --ssh test -n "$SSH_AUTH_SOCK" && ssh-add -l | grep 'rsa-key-from-earthly-tests'
Expand Down
2 changes: 1 addition & 1 deletion tests/visited-upfront-hash-collection.earth
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

parallel:
BUILD +test-executor --INDEX=1
Expand Down
4 changes: 2 additions & 2 deletions tests/wait-block/save-image/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ check-tag-exists-locally:
RUN docker images "$REGISTRY/myuser/myimg:$tag" | grep "$tag"

check-with-docker-pull-works:
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
ARG --required REGISTRY
ARG --required tag
WITH DOCKER --pull $REGISTRY/myuser/myimg:$tag
RUN docker images "$REGISTRY/myuser/myimg:$tag" | grep "$tag"
END

check-with-docker-load-works:
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
WITH DOCKER --load mytestimg=+myimg
RUN docker run mytestimg /bin/sh -c 'cat /special-data' | grep NWMyMTQ2Y
END
Expand Down
2 changes: 1 addition & 1 deletion tests/wait-block/with-docker-run-load/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ a-test-image:
SAVE IMAGE $REGISTRY/myuser/myimg:$tag

test:
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
ARG --required REGISTRY
ARG --required tag
WAIT
Expand Down
2 changes: 1 addition & 1 deletion tests/with-docker-compose/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

ARG DIND_IMAGE=earthly/dind:alpine-3.19-docker-25.0.3-r1
ARG DIND_IMAGE=earthly/dind:alpine-3.19-docker-25.0.3-r2
FROM $DIND_IMAGE
WORKDIR /test

Expand Down
2 changes: 1 addition & 1 deletion tests/with-docker-expose/Earthfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

all:
BUILD +test-single
Expand Down
2 changes: 1 addition & 1 deletion tests/with-docker-kind/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ all:
BUILD +ubuntu-kind

alpine-kind:
ARG DIND_IMAGE=earthly/dind:alpine-3.19-docker-25.0.3-r1
ARG DIND_IMAGE=earthly/dind:alpine-3.19-docker-25.0.3-r2
FROM $DIND_IMAGE
RUN apk add curl
RUN curl -Lo ./kind https://kind.sigs.k8s.io/dl/v$KIND_VERSION/kind-linux-amd64 && chmod +x kind
Expand Down
2 changes: 1 addition & 1 deletion tests/with-docker-registry/Earthfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.8
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2

all:
BUILD +empty-test
Expand Down
2 changes: 1 addition & 1 deletion tests/with-docker-via-command/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ MY_COMMAND_WITH_DOCKER:
END

test:
FROM earthly/dind:alpine-3.19-docker-25.0.3-r1
FROM earthly/dind:alpine-3.19-docker-25.0.3-r2
DO +MY_COMMAND_WITH_DOCKER --MY_ARG="myvalue"
DO +MY_COMMAND_WITH_DOCKER
2 changes: 1 addition & 1 deletion tests/with-docker/Earthfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION 0.8

ARG --global DIND_IMAGE=earthly/dind:alpine-3.19-docker-25.0.3-r1
ARG --global DIND_IMAGE=earthly/dind:alpine-3.19-docker-25.0.3-r2
FROM $DIND_IMAGE

all:
Expand Down

0 comments on commit 77041fa

Please sign in to comment.