Compare commits

...

3 Commits

Author SHA1 Message Date
gitmpr
9699869f63
Merge 94353d7fd4 into 34d3a29308 2026-03-20 11:23:08 +01:00
dependabot[bot]
34d3a29308
Bump golang from 1.26.0 to 1.26.1 (#2626)
Bumps golang from 1.26.0 to 1.26.1.

---
updated-dependencies:
- dependency-name: golang
  dependency-version: 1.26.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-20 20:30:05 +11:00
gitmpr
94353d7fd4 docs: resolve latest yq version dynamically in wget install example
Replaces the hardcoded version with a GitHub API lookup so the install
snippet always uses the latest release without needing manual updates.
2026-02-23 11:49:06 +01:00
3 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.26.0 AS builder
FROM golang:1.26.1 AS builder
WORKDIR /go/src/mikefarah/yq

View File

@ -1,4 +1,4 @@
FROM golang:1.26.0
FROM golang:1.26.1
RUN apt-get update && \
apt-get install -y npm && \

View File

@ -82,9 +82,8 @@ Use wget to download pre-compiled binaries. Choose your platform and architectur
**For Linux (example):**
```bash
# Set your platform variables (adjust as needed)
VERSION=v4.2.0
PLATFORM=linux_amd64
PLATFORM=linux_amd64 # adjust as needed
VERSION=$(wget -qO- https://api.github.com/repos/mikefarah/yq/releases/latest | jq -r .tag_name)
# Download compressed binary
wget https://github.com/mikefarah/yq/releases/download/${VERSION}/yq_${PLATFORM}.tar.gz -O - |\