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
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
prepare:
uses: gardener/cc-utils/.github/workflows/prepare.yaml@master
uses: gardener/cc-utils/.github/workflows/prepare.yaml@v1
with:
mode: ${{ inputs.mode }}
permissions:
Expand All @@ -32,7 +32,7 @@ jobs:
packages: write
id-token: write
secrets: inherit
uses: gardener/cc-utils/.github/workflows/oci-ocm.yaml@master
uses: gardener/cc-utils/.github/workflows/oci-ocm.yaml@v1
strategy:
matrix:
args:
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.25'
- uses: gardener/cc-utils/.github/actions/trusted-checkout@master
- uses: gardener/cc-utils/.github/actions/trusted-checkout@v1
- name: run-test-unit
shell: bash
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
.ci/test-unit |& tee /tmp/blobs.d/test-unit-log.txt
tar czf /tmp/blobs.d/test-unit-log.tar.gz -C/tmp/blobs.d test-unit-log.txt
- name: add-test-unit-results-to-component-descriptor
uses: gardener/cc-utils/.github/actions/export-ocm-fragments@master
uses: gardener/cc-utils/.github/actions/export-ocm-fragments@v1
with:
blobs-directory: /tmp/blobs.d
ocm-resources: |
Expand All @@ -84,7 +84,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: '1.25'
- uses: gardener/cc-utils/.github/actions/trusted-checkout@master
- uses: gardener/cc-utils/.github/actions/trusted-checkout@v1
- name: run-check
run: |
set -eu
Expand All @@ -94,7 +94,7 @@ jobs:
tar czf /tmp/blobs.d/check-log.tar.gz -C/tmp/blobs.d check-log.txt
tar czf /tmp/blobs.d/gosec-report.tar.gz gosec-report.sarif
- name: add-reports-to-component-descriptor
uses: gardener/cc-utils/.github/actions/export-ocm-fragments@master
uses: gardener/cc-utils/.github/actions/export-ocm-fragments@v1
with:
blobs-directory: /tmp/blobs.d
ocm-resources: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/non-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id-token: write

component-descriptor:
uses: gardener/cc-utils/.github/workflows/post-build.yaml@master
uses: gardener/cc-utils/.github/workflows/post-build.yaml@v1
needs:
- build
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run-tests: true

release-to-github-and-bump:
uses: gardener/cc-utils/.github/workflows/release.yaml@master
uses: gardener/cc-utils/.github/workflows/release.yaml@v1
needs:
- build
secrets: inherit
Expand Down
Loading