Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,14 @@ jobs:
run: docker images

- name: Install goss
run: curl -fsSL https://goss.rocks/install | sh && goss --version
env:
GOSS_VERSION: v0.4.9
run: |
curl -fsSL "https://github.com/goss-org/goss/releases/download/${GOSS_VERSION}/goss-linux-amd64" -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& curl -fsSL "https://github.com/goss-org/goss/releases/download/${GOSS_VERSION}/dgoss" -o /usr/local/bin/dgoss \
&& chmod +rx /usr/local/bin/dgoss \
&& goss --version

- name: Test image
run: dgoss run -i drevops/ci-runner:test-ci
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ RUN version=29.5.2 && \
# Install Docker Compose V5 (docker compose).
# @see https://github.com/docker/compose/releases
# renovate: datasource=github-releases depName=docker/compose extractVersion=^(?<version>.*)$
RUN version=5.3.0 && \
RUN version=5.3.1 && \
mkdir -p "/usr/local/lib/docker/cli-plugins" && \
curl -sSL "https://github.com/docker/compose/releases/download/v${version}/docker-compose-$(uname -s)-$(uname -m)" -o "/usr/local/lib/docker/cli-plugins/docker-compose" && \
chmod +x "/usr/local/lib/docker/cli-plugins/docker-compose" && \
Expand Down