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
6 changes: 3 additions & 3 deletions .github/workflows/apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
name: Lint + schema-check before apply
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: yamllint
run: |
python3 -m pip install --quiet yamllint
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
needs: validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Confirm the APPLY phrase
run: |
Expand All @@ -86,7 +86,7 @@ jobs:
echo "confirm phrase OK — proceeding."

- name: Set up kubectl
uses: azure/setup-kubectl@v4
uses: azure/setup-kubectl@v5
with:
version: 'latest'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pin-prod-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Validate tag matches production regex
env:
Expand Down Expand Up @@ -172,10 +172,10 @@ jobs:
id-token: write # for cosign keyless signing
steps:
- name: Install syft
uses: anchore/sbom-action/download-syft@v0.17.0
uses: anchore/sbom-action/download-syft@v0.24.0

- name: Install cosign
uses: sigstore/cosign-installer@v3.5.0
uses: sigstore/cosign-installer@v4.1.2

- name: Log in to GHCR
env:
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
echo "::notice::SBOM attached to $IMAGE"

- name: Upload SBOM as workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom-${{ inputs.package }}-${{ inputs.tag }}
path: sbom.spdx.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: yamllint
run: |
Expand Down
Loading