Skip to content

Commit 8b80f04

Browse files
authored
Merge branch 'main' into K8SPS-392
2 parents 2ccb081 + 17ed9bc commit 8b80f04

File tree

244 files changed

+1680
-1392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+1680
-1392
lines changed

.e2eignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.github/**
2+
docs/**
3+
examples/**
4+
licenses/**
5+
.editorconfig
6+
code-of-conduct.md
7+
CONTRIBUTING.md
8+
kubernetes.svg
9+
LICENSE
10+
LICENSE-HEADER
11+
README.md
12+
.gitignore
13+
release_versions

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
* @hors @egegunes @inelpandzic @pooknull
2-
/e2e-tests/ @tplavcic @nmarukovich @ptankov @jvpasinatto @eleo007
3-
Jenkinsfile @tplavcic @nmarukovich @ptankov @jvpasinatto @eleo007
1+
* @hors @egegunes @pooknull @nmarukovich @gkech
2+
/e2e-tests/ @ptankov @jvpasinatto @eleo007
3+
Jenkinsfile @ptankov @jvpasinatto @eleo007

.github/linters/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module linters
22

3-
go 1.22.0
3+
go 1.23.4

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
**Config/Logging/Testability**
2424
- [ ] Are all needed new/changed options added to default YAML files?
25+
- [ ] Are all needed new/changed options added to the [Helm Chart](https://github.com/percona/percona-helm-charts)?
2526
- [ ] Did we add proper logging messages for operator actions?
2627
- [ ] Did we ensure compatibility with the previous version or cluster upgrade process?
2728
- [ ] Does the change support oldest and newest supported PS version?

.github/workflows/reviewdog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- uses: actions/setup-go@v5
99
with:
10-
go-version: '^1.22'
10+
go-version: '^1.23'
1111
- uses: actions/checkout@v4
1212
- name: golangci-lint
1313
uses: golangci/golangci-lint-action@v6
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v4
3535
- uses: actions/setup-go@v5
3636
with:
37-
go-version: '^1.22'
37+
go-version: '^1.23'
3838
- run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
3939
- run: $(go env GOPATH)/bin/shfmt -f . | grep -v 'vendor' | xargs $(go env GOPATH)/bin/shfmt -bn -ci -s -w
4040
- name: suggester / shfmt
@@ -85,7 +85,7 @@ jobs:
8585
- uses: actions/checkout@v4
8686
- uses: actions/setup-go@v5
8787
with:
88-
go-version: '^1.22'
88+
go-version: '^1.23'
8989
- name: check on release branch
9090
if: ${{ contains(github.head_ref, 'release-') || contains(github.base_ref, 'release-') }}
9191
run: |

.github/workflows/scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
./e2e-tests/build
3232
3333
- name: Run Trivy vulnerability scanner image (linux/arm64)
34-
uses: aquasecurity/trivy-action@0.24.0
34+
uses: aquasecurity/trivy-action@0.29.0
3535
with:
3636
image-ref: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-arm64'
3737
format: 'table'
@@ -49,7 +49,7 @@ jobs:
4949
./e2e-tests/build
5050
5151
- name: Run Trivy vulnerability scanner image (linux/amd64)
52-
uses: aquasecurity/trivy-action@0.24.0
52+
uses: aquasecurity/trivy-action@0.29.0
5353
with:
5454
image-ref: '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}-amd64'
5555
format: 'table'

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- name: Setup Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: "^1.22"
16+
go-version: "^1.23"
1717
- name: Perform the test
1818
run: make test

0 commit comments

Comments
 (0)