Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
03e03c6
gh action: add go tidy check
Luap99 Aug 28, 2025
eb65234
validate: refactor git-validate
Luap99 Dec 8, 2025
63b35d0
storage: fix cirrus ci
Luap99 May 4, 2026
188ecda
ci: rename contrib/cirrus to hack/ci
giuseppe May 28, 2026
f97344f
ci: replace Cirrus CI with GitHub Actions
giuseppe May 28, 2026
af3888e
[skip-ci] Update actions/checkout digest to df4cb1c
renovate[bot] Jun 5, 2026
c2bb376
Use the GitHub action grouping syntax
mtrmac Jun 4, 2026
4c99305
Fix the test filtering for root-only tests
mtrmac Jun 4, 2026
b4f9632
Update to the current Skopeo CI image
mtrmac Jun 5, 2026
82777e7
Use "go-version: stable" for the compilation / lint steps
mtrmac Jun 5, 2026
5eac3e0
Add a FIXME to manage Lima images via Renovate
mtrmac Jun 5, 2026
82b769e
Document (a guess at!) why we mount over /tmp
mtrmac Jun 5, 2026
ff44d10
Add a variable for changing the branch we run Skopeo tests against
mtrmac Jun 5, 2026
bbc357f
Stop remounting over /tmp
mtrmac Jun 9, 2026
588bb86
ci: remove runtime installs
Luap99 Jun 11, 2026
2b3b818
Update automation image to 2026-06-16
Luap99 Jun 16, 2026
3d6a008
Update actions/checkout action to v7
renovate[bot] Jun 19, 2026
d46accb
ci: drop storage go fix job
Luap99 Jun 23, 2026
2eff3d5
ci: use reusable action for lima
Luap99 Jun 22, 2026
24eb993
ci: turn validate workflow into reusable action
Luap99 Jun 22, 2026
5853eae
validate.yml: pin github actions
Luap99 Jun 22, 2026
252dd58
ci: wait for validation before running all tests
Luap99 Jun 22, 2026
2e9dfc7
ci: add check for basic github action yml things
Luap99 Jun 22, 2026
dadd119
validate: add job timeouts
Luap99 Jun 22, 2026
f21a849
ci: lower some timeout values
Luap99 Jun 22, 2026
3b12da4
.github/workflows/labeler.yml: pin action by sha
Luap99 Jun 22, 2026
d1ac16d
ci: use smaller cncf runners
Luap99 Jun 23, 2026
ae42648
gh actions: update permissions
Luap99 Jun 25, 2026
78ffc3b
gh actions: add full version comment after digest
Luap99 Jun 25, 2026
6ccc0fa
github action: rework filters
Luap99 Jun 25, 2026
c25a3ab
Update actions/setup-go action to v6.5.0
renovate[bot] Jun 26, 2026
e7f5807
Update golangci/golangci-lint-action action to v9.3.0
renovate[bot] Jun 30, 2026
e7c0be1
chore(deps): update dorny/paths-filter action to v4.0.2
renovate[bot] Jul 3, 2026
a136d16
Update actions/labeler action to v6.2.0
renovate[bot] Jul 9, 2026
445ce04
ci: make the automation release renovate managed
Luap99 Jul 14, 2026
b550e4b
Update dependency podman-container-tools/automation to v20260707
renovate[bot] Jul 16, 2026
02bc0df
Update actions/setup-go action to v7
renovate[bot] Jul 16, 2026
98fe5ed
Update actions/checkout action to v7.0.1
renovate[bot] Jul 20, 2026
c06ea92
Update actions/labeler action to v7
renovate[bot] Jul 21, 2026
0bb11f8
Update dependency podman-container-tools/automation to v20260722
renovate[bot] Jul 22, 2026
a21e3ca
github: remove buildah downstream action
Luap99 Jul 22, 2026
3635fab
ci: do not use custom ssh user for image tests
Luap99 Jul 22, 2026
e7eacda
ci: use old netavark 1.17 build
Luap99 Jul 22, 2026
da61765
ci: drop cni tests
Luap99 Jul 23, 2026
1028d0c
ci: do not call make test-integration for common
Luap99 Jul 23, 2026
c5f8809
ci: set skopeo CI branch
Luap99 Jul 23, 2026
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
338 changes: 0 additions & 338 deletions .cirrus.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/filters.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
all:
- '.github/workflows/ci.yml'
- '.github/workflows/lima.yml'
- '.github/filters.yaml'
- 'hack/ci/**'
- 'Makefile'
- 'go.work'
- 'go.work.sum'

storage:
- 'storage/**'

image:
- 'image/**'
# image depends on storage, so any storage change must trigger image tests as well
- 'storage/**'

common:
- 'common/**'
# see comment above, common depends on both image and storage
- 'image/**'
- 'storage/**'
Loading