Skip to content

Commit f380bba

Browse files
authored
Merge branch 'main' into feature/ELK
2 parents 9470a0e + 7eb3337 commit f380bba

File tree

15 files changed

+41
-41
lines changed

15 files changed

+41
-41
lines changed

.github/actions/deploy-keptn-on-cluster/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ runs:
3030
using: "composite"
3131
steps:
3232
- name: Set up Go 1.x
33-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
33+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
3434
with:
3535
go-version: ${{ env.GO_VERSION }}
3636
cache: true
3737
cache-dependency-path: '**/go.sum'
3838
check-latest: true
3939

4040
- name: Download artifacts
41-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
41+
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4
4242
with:
4343
path: ~/download/artifacts
4444

4545
- name: "Create single kind Cluster"
46-
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0
46+
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
4747
with:
4848
cluster_name: ${{ inputs.cluster-name }}
4949
version: ${{ inputs.kind-version }}

.github/workflows/CI.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9292

9393
- name: Set up Go 1.x
94-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
94+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
9595
with:
9696
go-version: ${{ env.GO_VERSION }}
9797
cache: true
@@ -139,17 +139,17 @@ jobs:
139139

140140
- name: Cache build tools
141141
id: cache-build-tools
142-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
142+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
143143
with:
144144
path: ./${{ matrix.config.folder }}bin
145145
key: build-tools-${{ github.ref_name }}
146146

147147
- name: Set up Docker Buildx
148148
id: buildx
149-
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
149+
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
150150

151151
- name: Build Docker Image
152-
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
152+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
153153
with:
154154
context: ${{ matrix.config.folder }}
155155
platforms: linux/amd64,linux/arm64
@@ -168,7 +168,7 @@ jobs:
168168
outputs: type=oci,dest=/tmp/${{ matrix.config.name }}-image.tar
169169

170170
- name: Upload image as artifact
171-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
171+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
172172
with:
173173
name: ${{ matrix.config.name }}-image.tar
174174
path: /tmp/${{ matrix.config.name }}-image.tar
@@ -184,7 +184,7 @@ jobs:
184184
run: echo "" > tag
185185

186186
- name: Upload tag for tests
187-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
187+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
188188
with:
189189
name: dev-${{ env.DATETIME }}
190190
path: tag

.github/workflows/component-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2323

2424
- name: Set up Go 1.x
25-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
25+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
2626
with:
2727
go-version: ${{ env.GO_VERSION }}
2828
cache: true

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Upload ${{ matrix.config.name }} cluster logs
4747
if: always()
48-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
48+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
4949
with:
5050
name: logs-e2e-tests-${{ matrix.config.name }}
5151
path: .github/scripts/logs

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
- name: Check out code
4242
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4343

44-
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
44+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
4545
with:
4646
go-version: ${{ env.GO_VERSION }}
4747
check-latest: true
4848

4949
- name: golangci-lint
50-
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6
50+
uses: golangci/golangci-lint-action@4696ba8babb6127d732c3c6dde519db15edab9ea # v6
5151
with:
5252
working-directory: ${{ matrix.config.folder }}
5353
version: ${{ env.GOLANGCI_LINT_VERSION }}

.github/workflows/htmltest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fetch-depth: 0
3232

3333
- name: Cache HTMLTest packages
34-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
34+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
3535
with:
3636
path: |
3737
tmp/.htmltest

.github/workflows/integration-test-component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Upload cluster logs
5353
if: failure()
54-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
54+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
5555
with:
5656
name: logs-integration-tests-${{ inputs.type }}
5757
path: .github/scripts/logs

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Upload cluster logs
5454
if: failure()
55-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
55+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
5656
with:
5757
name: logs-integration-tests-${{ inputs.cert-manager-io-enabled }}
5858
path: .github/scripts/logs

.github/workflows/load-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Cache build tools
3030
id: cache-build-tools
31-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
31+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
3232
with:
3333
path: /usr/local/bin/kube-burner
3434
key: kube-burner-${{ env.KUBE_BURNER_VERSION }}
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Upload results
5959
if: always()
60-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
60+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
6161
with:
6262
name: load-tests-results
6363
path: ./collected-metrics
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Upload cluster logs
7171
if: failure()
72-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
72+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
7373
with:
7474
name: logs-load-tests
7575
path: .github/scripts/logs

.github/workflows/markdown-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7676

7777
- name: Set up Go 1.x
78-
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
78+
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
7979
with:
8080
go-version: ${{ env.GO_VERSION }}
8181
check-latest: true

0 commit comments

Comments
 (0)