diff --git a/.drone/drone.jsonnet b/.drone/drone.jsonnet index 9bed6bfb5421..b60abfe7e8a3 100644 --- a/.drone/drone.jsonnet +++ b/.drone/drone.jsonnet @@ -446,7 +446,7 @@ local manifest_ecr(apps, archs) = pipeline('manifest-ecr') { [ pipeline('loki-build-image') { - local build_image_tag = '0.28.0', + local build_image_tag = '0.28.1', workspace: { base: '/src', path: 'loki', diff --git a/.drone/drone.yml b/.drone/drone.yml index e70d3588b5c3..7d6e52c36058 100644 --- a/.drone/drone.yml +++ b/.drone/drone.yml @@ -10,7 +10,7 @@ steps: dry_run: true repo: grafana/loki-build-image tags: - - 0.28.0 + - 0.28.1 when: event: - pull_request @@ -26,7 +26,7 @@ steps: from_secret: docker_password repo: grafana/loki-build-image tags: - - 0.28.0 + - 0.28.1 username: from_secret: docker_username when: @@ -1675,6 +1675,6 @@ kind: secret name: gpg_private_key --- kind: signature -hmac: de9f4851c4bfd1324e22a0cb983432801b59240128c1b162ea67c5cd814606c9 +hmac: e5f127d71d3dcb4ae93d348ff2641c9639bf0372640fd398328cff25eda62a9d ... diff --git a/loki-build-image/Dockerfile b/loki-build-image/Dockerfile index cea877a87ea7..0e258c6dccf9 100644 --- a/loki-build-image/Dockerfile +++ b/loki-build-image/Dockerfile @@ -24,7 +24,7 @@ RUN apk add --no-cache curl && \ FROM alpine:3.16.4 as golangci RUN apk add --no-cache curl && \ cd / && \ - curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.0 + curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.51.2 FROM alpine:3.16.4 as buf