Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/build-boot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: sandbox-init tests
working-directory: boot/init
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Read kernel version
id: ver
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: boot-digests-${{ matrix.arch }}
path: /tmp/digests/*
Expand All @@ -103,7 +103,7 @@ jobs:
image: ${{ steps.ref.outputs.image }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Read kernel version
id: ver
Expand All @@ -116,7 +116,7 @@ jobs:
run: echo "image=ghcr.io/${{ github.repository }}/boot:$(cat boot/kernel/VERSION)-${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT"

- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: boot-digests-*
path: /tmp/digests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-os-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
flavor_matrix: ${{ steps.set-matrix.outputs.flavor_matrix }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
matrix: ${{ fromJson(needs.detect.outputs.base_matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Read versions
id: ver
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
matrix: ${{ fromJson(needs.detect.outputs.flavor_matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Set up QEMU
uses: docker/setup-qemu-action@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-silkd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: fmt + clippy + test
working-directory: silkd
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: silkd-digests-${{ matrix.arch }}
path: /tmp/digests/*
Expand All @@ -97,7 +97,7 @@ jobs:
image: ${{ steps.ref.outputs.image }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Read silkd version
id: ver
Expand All @@ -109,7 +109,7 @@ jobs:
run: echo "image=ghcr.io/${{ github.repository }}/silkd:${{ steps.ver.outputs.version }}-${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT"

- name: Download digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
pattern: silkd-digests-*
path: /tmp/digests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
osimage: ${{ steps.diff.outputs.osimage }}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
id-token: write # OIDC for PyPI Trusted Publishing
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Resolve package dir from the tag
id: pkg
Expand All @@ -44,7 +44,7 @@ jobs:
echo "version=$ver" >> "$GITHUB_OUTPUT"

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
- name: Install tooling
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version-file: sandboxd/go.mod
- name: Build silkd (musl static)
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
tar -C /tmp/silkd-dist -czf "dist-extra/silkd_${GITHUB_REF_NAME#v}_Linux_arm64.tar.gz" silkd
tar -C /tmp/silkd-dist -czf "dist-extra/silkd_Linux_arm64.tar.gz" silkd
- name: goreleaser
uses: goreleaser/goreleaser-action@v6
uses: goreleaser/goreleaser-action@v7
with:
args: release --clean
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sandboxd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version-file: sandboxd/go.mod

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/silkd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: fmt + clippy + test
working-directory: silkd
Expand Down
Loading