Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,6 @@ jobs:
- test
- cross-i386
- fedora
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- run: echo "All jobs completed"
20 changes: 10 additions & 10 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
contents: read
pull-requests: read
checks: write # to allow the action to annotate code in the PR.
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
with:
Expand All @@ -53,7 +53,7 @@ jobs:
golangci-lint run --config .golangci-extra.yml --new-from-rev=HEAD~1

modernize:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: make EXTRA_BUILDTAGS="runc_nocriu"

codespell:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- name: install deps
Expand Down Expand Up @@ -139,14 +139,14 @@ jobs:
run : ./script/check-config.sh

space-at-eol:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- run: rm -fr vendor
- run: if git -P grep -I -n '\s$'; then echo "^^^ extra whitespace at EOL, please fix"; exit 1; fi

deps:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- name: install go
Expand All @@ -168,7 +168,7 @@ jobs:
permissions:
contents: read
pull-requests: read
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- name: get pr commits
if: github.event_name == 'pull_request' # Only check commits on pull requests.
Expand All @@ -190,7 +190,7 @@ jobs:
run: echo "Nothing to check here."

cfmt:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- name: checkout
uses: actions/checkout@v6
Expand All @@ -204,7 +204,7 @@ jobs:
git diff --exit-code

check-go:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- name: check Go version
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:


get-images:
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
- name: install bashbrew
Expand Down Expand Up @@ -333,6 +333,6 @@ jobs:
- shellcheck
- shfmt
- space-at-eol
runs-on: ubuntu-24.04
runs-on: ubuntu-slim
steps:
- run: echo "All jobs completed"
Loading