Skip to content
Closed
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/actions/bootstrap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ runs:
# See https://goreleaser.com/blog/supply-chain-security/
- name: installs syft for generating the SBOM with goreleaser
if: "${{ inputs.goreleaser == 'true' }}"
uses: anchore/sbom-action/download-syft@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2
uses: anchore/sbom-action/download-syft@17ae1740179002c89186b61233e0f892c3118b11 # v0.23.0
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,28 +57,28 @@ jobs:
run: make release

# Store artifacts to help with troubleshooting
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: always()
with:
name: release
path: "dist/*.*"
retention-days: 5

# Store artifacts to help with troubleshooting
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: always()
with:
name: aws
path: ".aws-linux*/"
retention-days: 5

- name: generate build provenance (binaries)
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-checksums: ./dist/checksums.txt

- name: generate build provenance (docker images)
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-checksums: ./dist/digests.txt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: ./.github/actions/bootstrap
with:
goreleaser: 'true'
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3
- uses: hashicorp/setup-terraform@5e8dbf3c6d9deaf4193ca7a8fb23f2ac83bb6c85 # v4.0.0
with:
terraform_version: 1.2.3
- uses: elastic/oblt-actions/aws/auth@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Build
run: make build dist

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
if: always()
with:
name: snapshots
Expand All @@ -69,7 +69,7 @@ jobs:
# but only for binaries
- name: generate build provenance (binaries)
if: github.event.pull_request.head.repo.full_name == github.repository
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-checksums: ./dist/checksums.txt

Expand Down