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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# renovate: datasource=docker depName=eclipse-temurin allowedVersions=<18.0.0
ARG JDK17_VERSION=17.0.19_10-jdk

FROM eclipse-temurin:$JDK17_VERSION as jdk17

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM eclipse-temurin:21.0.11_10-jdk as jdk21

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM bats/bats:1.14.0 as bats-cli

Check warning on line 6 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 6 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM eclipse-temurin:25.0.3_9-jdk as jdk25

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM ghcr.io/helmfile/helmfile:v1.7.4 as helmfile

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 8 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM gitlab/glab:v1.114.0 as glab-cli

Check warning on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM jnorwood/helm-docs:v1.14.2 as helm-docs

Check warning on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 10 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build Container Image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
FROM cloudtooling/dev-buildbox-base:0.1.47

ARG BUILD_DATE
Expand Down Expand Up @@ -88,7 +88,7 @@
python3 -m pip install ansible-docsmith ansible-argument-spec-generator &&\
# git cliff for changelog generation
curl -LO "https://github.com/orhun/git-cliff/releases/download/v${GIT_CLIFF_VERSION}/git-cliff-${GIT_CLIFF_VERSION}-x86_64-unknown-linux-gnu.tar.gz" &&\
tar -zxvf "git-cliff-${GIT_CLIFF_VERSION}-x86_64-unknown-linux-gnu.tar.gz" -C /usr/local/bin/ &&\
tar -zxvf "git-cliff-${GIT_CLIFF_VERSION}-x86_64-unknown-linux-gnu.tar.gz" -C /usr/local/bin/ --strip-components=1 "git-cliff-${GIT_CLIFF_VERSION}/git-cliff" &&\
rm "git-cliff-${GIT_CLIFF_VERSION}-x86_64-unknown-linux-gnu.tar.gz" &&\
# clean up to slim image
apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/{apt,dpkg,cache,log}/
Expand Down
9 changes: 9 additions & 0 deletions test/shell/tools.bats
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@
[ "$status" -eq 0 ]
}

@test "should load git-cliff" {
run git-cliff --version
[ "$status" -eq 0 ]
}

@test "should have git-cliff installed directly in /usr/local/bin" {
[ -x /usr/local/bin/git-cliff ]
}

@test "should load yarn" {
run yarn --version
[ "$status" -eq 0 ]
Expand Down
Loading