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
4 changes: 4 additions & 0 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ jobs:
with:
file: ./${{ matrix.os }}.dockerfile
context: .
provenance: false
sbom: false
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -128,6 +130,8 @@ jobs:
with:
file: ./${{ matrix.os }}.dockerfile
context: .
provenance: false
sbom: false
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ jobs:
with:
file: ./${{ matrix.os }}.dockerfile
context: .
provenance: false
sbom: false
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ jobs:
with:
file: ./${{ matrix.os }}.dockerfile
context: .
provenance: false
sbom: false
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -132,6 +134,8 @@ jobs:
with:
file: ./${{ matrix.os }}.dockerfile
context: .
provenance: false
sbom: false
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Deprecated
- Removed -->

## [v1.2.0] - 2023-02-06

### All Changes

- Updated [Alpine](https://www.alpinelinux.org/) base image from `v3.17.0` to `v3.17.1` (still Ruby `v3.1.3`).
- Updated Debian Ruby base image from `v3.1.3-slim-bullseye` to `v3.2.0-slim-bullseye`.
- Updated [libxml-ruby](https://github.com/xml4r/libxml-ruby) Gem from `v3.2.4` to `v4.0.0`.
- Updated [async-http](https://github.com/socketry/async-http) Gem from `v0.59.3` to `v0.60.1`.
- Updated [oj](https://github.com/ohler55/oj) from `v3.13.23` to `v3.14.1`.

## [v1.1.0] - 2022-12-07

### All Changes
Expand Down
2 changes: 1 addition & 1 deletion alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.17.1
FROM alpine:3.17.1@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a

ENV FLUENTD_DISABLE_BUNDLER_INJECTION="1"

Expand Down
2 changes: 1 addition & 1 deletion debian.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.0-slim-bullseye
FROM ruby:3.2.0-slim-bullseye@sha256:f2f2747508c05c6e0b21fc015ef7f0f577e6f644ffc450350d67b85995c23dd5

ENV FLUENTD_DISABLE_BUNDLER_INJECTION="1"

Expand Down