Skip to content

Commit 78a7200

Browse files
author
sapcc-bot
committed
Run go-makefile-maker
1 parent 262ce4d commit 78a7200

5 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/checks.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
runs-on: large_runner_16core_64gb
2525
steps:
2626
- name: Check out code
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2828
with:
2929
persist-credentials: false
3030
- name: Set up Go
31-
uses: actions/setup-go@v6
31+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3232
with:
3333
check-latest: true
3434
go-version: 1.26.3
3535
- name: Run golangci-lint
36-
uses: golangci/golangci-lint-action@v9
36+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9
3737
with:
3838
version: v2.12.2
3939
- name: Delete pre-installed shellcheck
@@ -43,10 +43,10 @@ jobs:
4343
- name: Dependency Licenses Review
4444
run: make check-dependency-licenses
4545
- name: Check for spelling errors
46-
uses: crate-ci/typos@v1
46+
uses: crate-ci/typos@7b04f660f4ee4f048d18fd341887cf28dfbedfe2 # v1
4747
env:
4848
CLICOLOR: "1"
4949
- name: Check if source code files have license header
5050
run: make check-addlicense
5151
- name: REUSE Compliance Check
52-
uses: fsfe/reuse-action@v6
52+
uses: fsfe/reuse-action@676e2d560c9a403aa252096d99fcab3e1132b0f5 # v6

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
runs-on: large_runner_16core_64gb
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
with:
3232
persist-credentials: false
3333
- name: Set up Go
34-
uses: actions/setup-go@v6
34+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3535
with:
3636
check-latest: true
3737
go-version: 1.26.3
@@ -45,11 +45,11 @@ jobs:
4545
runs-on: large_runner_16core_64gb
4646
steps:
4747
- name: Check out code
48-
uses: actions/checkout@v6
48+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4949
with:
5050
persist-credentials: false
5151
- name: Post coverage report
52-
uses: fgrosse/go-coverage-report@v1.3.0
52+
uses: fgrosse/go-coverage-report@cbeb2ab2e32591d690337146ba02a911cc566f3f # v1.3.0
5353
with:
5454
coverage-artifact-name: code-coverage
5555
coverage-file-name: cover.out
@@ -65,18 +65,18 @@ jobs:
6565
runs-on: large_runner_16core_64gb
6666
steps:
6767
- name: Check out code
68-
uses: actions/checkout@v6
68+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6969
with:
7070
persist-credentials: false
7171
- name: Set up Go
72-
uses: actions/setup-go@v6
72+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
7373
with:
7474
check-latest: true
7575
go-version: 1.26.3
7676
- name: Run tests and generate coverage report
7777
run: make build/cover.out
7878
- name: Archive code coverage results
79-
uses: actions/upload-artifact@v7
79+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
8080
with:
8181
name: code-coverage
8282
path: build/cover.out

.github/workflows/codeql.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ jobs:
2727
runs-on: large_runner_16core_64gb
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
with:
3232
persist-credentials: false
3333
- name: Set up Go
34-
uses: actions/setup-go@v6
34+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3535
with:
3636
check-latest: true
3737
go-version: 1.26.3
3838
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@v4
39+
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
4040
with:
4141
languages: go
4242
queries: security-extended
4343
- name: Autobuild
44-
uses: github/codeql-action/autobuild@v4
44+
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@v4
46+
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4

.github/workflows/container-registry-ghcr.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ jobs:
2121
runs-on: large_runner_16core_64gb
2222
steps:
2323
- name: Check out code
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2525
with:
2626
persist-credentials: false
2727
- name: Log in to the Container registry
28-
uses: docker/login-action@v4
28+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
2929
with:
3030
password: ${{ secrets.GITHUB_TOKEN }}
3131
registry: ghcr.io
3232
username: ${{ github.actor }}
3333
- name: Extract metadata (tags, labels) for Docker
3434
id: meta
35-
uses: docker/metadata-action@v6
35+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6
3636
with:
3737
images: ghcr.io/${{ github.repository }}
3838
tags: |
@@ -45,11 +45,11 @@ jobs:
4545
# https://github.com/docker/metadata-action#typesha
4646
type=sha,format=long
4747
- name: Set up QEMU
48-
uses: docker/setup-qemu-action@v4
48+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
4949
- name: Set up Docker Buildx
50-
uses: docker/setup-buildx-action@v4
50+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
5151
- name: Build and push Docker image
52-
uses: docker/build-push-action@v7
52+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7
5353
with:
5454
context: .
5555
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/helm-oci-package-ghcr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
runs-on: large_runner_16core_64gb
2424
steps:
2525
- name: Check out code
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2727
with:
2828
fetch-depth: 0
2929
fetch-tags: true
3030
- name: Install Helm
31-
uses: azure/setup-helm@v5
31+
uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5
3232
- name: Lint Helm Chart
3333
run: helm lint charts/openstack-hypervisor-operator
3434
- name: Package Helm Chart
@@ -65,7 +65,7 @@ jobs:
6565
echo "Running helm package with $HELM_ARGS"
6666
helm package charts/openstack-hypervisor-operator --destination ./chart $HELM_ARGS
6767
- name: Log in to the Container registry
68-
uses: docker/login-action@v4
68+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
6969
with:
7070
password: ${{ secrets.GITHUB_TOKEN }}
7171
registry: ghcr.io

0 commit comments

Comments
 (0)