Skip to content
Merged
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
19 changes: 13 additions & 6 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,6 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: install deps
run: |
sudo apt -qq update
Expand All @@ -199,15 +197,25 @@ jobs:
make cfmt
git diff --exit-code

check-go:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: check Go version
run: |
GO_VER=$(awk -F= '/^ARG\s+GO_VERSION=/ {print $2; quit}' Dockerfile)
echo "Go version used in Dockerfile: $GO_VER"
echo -n "Checking if Go $GO_VER is supported ... "
curl -fsSL https://go.dev/dl/?mode=json | jq -e 'any(.[]; .version | startswith("go'$GO_VER'"))'
echo -n "Checking if Go $GO_VER is tested against ... "
yq -e '.jobs.test.strategy.matrix.go-version | contains(["'$GO_VER'.x"])' .github/workflows/test.yml

release:
timeout-minutes: 30
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: check CHANGELOG.md
run: make verify-changelog
Expand Down Expand Up @@ -236,8 +244,6 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: install bashbrew
env:
BASEURL: https://github.com/docker-library/bashbrew/releases/download
Expand All @@ -259,6 +265,7 @@ jobs:

all-done:
needs:
- check-go
- cfmt
- codespell
- commit
Expand Down