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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Lint & static checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1

- name: ShellCheck
run: shellcheck scripts/*.sh dev.sh tests/*.sh
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
name: Build image & smoke test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1

- name: Build image and run smoke test
# Retry to ride out transient Docker Hub pull rate-limits on shared runners.
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build, publish to GHCR, and release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: actions/checkout@v7.0.1

# Never publish an image that doesn't pass the smoke test. Retry to ride
# out transient Docker Hub pull rate-limits on shared runners.
Expand All @@ -34,15 +34,15 @@ jobs:
exit 1

- name: Log in to GHCR
uses: docker/login-action@v4.2.0
uses: docker/login-action@v4.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Derive image tags and labels
id: meta
uses: docker/metadata-action@v6.1.0
uses: docker/metadata-action@v6.2.0
with:
images: ghcr.io/${{ github.repository }}
tags: |
Expand All @@ -52,21 +52,21 @@ jobs:

- name: Build and push image
id: build
uses: docker/build-push-action@v7.2.0
uses: docker/build-push-action@v7.3.0
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Attest build provenance (keyless)
uses: actions/attest-build-provenance@v4.1.0
uses: actions/attest-build-provenance@v4.1.1
with:
subject-name: ghcr.io/${{ github.repository }}
subject-digest: ${{ steps.build.outputs.digest }}
push-to-registry: true

- name: Create GitHub Release
uses: softprops/action-gh-release@v3.0.1
uses: softprops/action-gh-release@v3.0.2
with:
generate_release_notes: true