Compare commits

..

1 Commits

Author SHA1 Message Date
c85be00d01 chore(deps): update docker.io/library/alpine docker tag to v3.22.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 10s
Build / build-amd64 (pull_request) Successful in 17s
Build / build-arm64 (pull_request) Successful in 1m15s
2025-05-30 19:08:22 +00:00
6 changed files with 16 additions and 16 deletions

View File

@ -15,9 +15,9 @@ jobs:
build-arm64: build-arm64:
runs-on: ubuntu-latest-arm64 runs-on: ubuntu-latest-arm64
steps: steps:
- uses: actions/checkout@v4.3.0 - uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0 - uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1 - uses: docker/setup-buildx-action@v3.10.0
- name: Build image - name: Build image
run: | run: |
@ -33,9 +33,9 @@ jobs:
build-amd64: build-amd64:
runs-on: ubuntu-latest-amd64 runs-on: ubuntu-latest-amd64
steps: steps:
- uses: actions/checkout@v4.3.0 - uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0 - uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1 - uses: docker/setup-buildx-action@v3.10.0
- name: Build image - name: Build image
run: | run: |

View File

@ -16,7 +16,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.3.0 - uses: actions/checkout@v4.2.2
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0 - uses: DavidAnson/markdownlint-cli2-action@v19.1.0
with: with:
globs: '**/*.md' globs: '**/*.md'

View File

@ -9,11 +9,11 @@ jobs:
push-arm64: push-arm64:
runs-on: ubuntu-latest-arm64 runs-on: ubuntu-latest-arm64
steps: steps:
- uses: actions/checkout@v4.3.0 - uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0 - uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1 - uses: docker/setup-buildx-action@v3.10.0
- uses: docker/login-action@v3.5.0 - uses: docker/login-action@v3.4.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@ -35,11 +35,11 @@ jobs:
push-amd64: push-amd64:
runs-on: ubuntu-latest-amd64 runs-on: ubuntu-latest-amd64
steps: steps:
- uses: actions/checkout@v4.3.0 - uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0 - uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1 - uses: docker/setup-buildx-action@v3.10.0
- uses: docker/login-action@v3.5.0 - uses: docker/login-action@v3.4.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
@ -64,7 +64,7 @@ jobs:
- push-arm64 - push-arm64
- push-amd64 - push-amd64
steps: steps:
- uses: docker/login-action@v3.5.0 - uses: docker/login-action@v3.4.0
with: with:
registry: git.cryptic.systems registry: git.cryptic.systems
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}

View File

@ -13,7 +13,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.3.0 - uses: actions/checkout@v4.2.2
- uses: peter-evans/dockerhub-description@v4.0.2 - uses: peter-evans/dockerhub-description@v4.0.2
with: with:
username: ${{ secrets.DOCKER_IO_USERNAME }} username: ${{ secrets.DOCKER_IO_USERNAME }}

View File

@ -1,4 +1,4 @@
FROM docker.io/library/alpine:3.22.1 AS build FROM docker.io/library/alpine:3.22.0 AS build
ARG JQ_VERSION ARG JQ_VERSION

View File

@ -6,7 +6,7 @@ This project contains all sources to build the container image `git.cryptic.syst
of this project is to package the binary `jq` as container image. The source code of the binary can be found in the of this project is to package the binary `jq` as container image. The source code of the binary can be found in the
upstream project of [adrienverge](https://github.com/adrienverge/jq). upstream project of [adrienverge](https://github.com/adrienverge/jq).
A documentation or how to use `jq` is available on [readthedocs.io](https://jq.readthedocs.io/en/stable/). An example The workflow or how `jq` can in general be used is documented [here](https://jq.readthedocs.io/en/stable/). An example
how to use this image and read a JSON file from stdin is documented below. Pleas adapt the path of the JSON file. how to use this image and read a JSON file from stdin is documented below. Pleas adapt the path of the JSON file.
```bash ```bash