Skip to content
This repository has been archived by the owner on Oct 22, 2023. It is now read-only.

Commit

Permalink
Update alpine Docker tag to v3.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jun 15, 2023
1 parent fbcc556 commit 0de7f9c
Show file tree
Hide file tree
Showing 27 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object ImageOverridesJourneyTest : Spek({
val runner by createForGroup { ApplicationRunner("image-override") }

on("running a task") {
val imageName = "alpine:3.18.0" // renovate:docker-image
val imageName = "alpine:3.18.2" // renovate:docker-image
val result by runBeforeGroup { runner.runApplication(listOf("--override-image", "build-env=$imageName", "the-task")) }

it("prints the output from that task") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: additional-arguments-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

tasks:
the-task:
Expand Down
2 changes: 1 addition & 1 deletion app/src/journeyTest/resources/additional-hosts/batect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: additional-hosts-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
additional_hosts:
additionalhost.batect.dev: 1.2.3.4

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

COPY test.sh /test.sh

Expand Down
2 changes: 1 addition & 1 deletion app/src/journeyTest/resources/config-vars/batect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: config-vars-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
command: sh -c 'echo $FROM_FILE && echo $FROM_COMMAND_LINE && echo $FROM_DEFAULT && exit 123'
environment:
FROM_FILE: <FROM_FILE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
volumes:
- local: <{batect.project_directory}/script.sh
container: /script.sh
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

RUN apk --no-cache add curl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: container-with-mount

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
volumes:
- ./task.sh:/task.sh

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

RUN apk --no-cache add curl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

RUN apk --no-cache add curl
2 changes: 1 addition & 1 deletion app/src/journeyTest/resources/many-tasks/batect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: many-tasks-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

tasks:
task-1:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

COPY build.sh task.sh /
RUN /build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: run-as-current-user-with-cache-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
volumes:
- local: .
container: /scripts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: run-as-current-user-with-mount-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
volumes:
- local: ../../../../build/test-results/journey-tests/run-as-current-user-with-mount
container: /output
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: run-as-current-user-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
volumes:
- local: ../../../../build/test-results/journey-tests/run-as-current-user
container: /output
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM alpine:3.18.0
FROM alpine:3.18.2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: simple-task-using-image-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

tasks:
the-task:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

RUN apk --no-cache add bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: task-using-log-driver-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2
log_driver: gelf
log_options:
gelf-address: udp://localhost:12201
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ project_name: task-with-environment-task

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

dependency:
image: alpine:3.18.0
image: alpine:3.18.2
command: sh -c 'echo "Working directory is $(pwd)" && echo "Value of CONTAINER_VAR is $CONTAINER_VAR" && echo "Value of OVERRIDDEN_VAR is $OVERRIDDEN_VAR" && echo "Value of NEW_VAR is $NEW_VAR"'
environment:
CONTAINER_VAR: set on container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: task-with-environment-from-host-task

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

tasks:
the-task:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: task-with-prerequisite-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

tasks:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: task-with-prerequisite-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

tasks:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: task-with-slow-healthy-dependency-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

dependency:
build_directory: dependency
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

COPY health-check.sh /tools/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_name: task-with-unhealthy-dependency-test

containers:
build-env:
image: alpine:3.18.0
image: alpine:3.18.2

http-server:
build_directory: http-server
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM alpine:3.18.0
FROM alpine:3.18.2

0 comments on commit 0de7f9c

Please sign in to comment.