Skip to content

Commit 187b34b

Browse files
authored
Merge branch 'main' into renovate/kubernetes-go
2 parents d830036 + c5edf12 commit 187b34b

25 files changed

+496
-441
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# the repo. Unless a later match takes precedence,
66
# @global-owner1 and @global-owner2 will be requested for
77
# review when someone opens a pull request.
8-
* @spectrocloud-labs/validator
8+
* @validator-labs/validator

.github/workflows/bulwark-gitleaks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
shell: sh
2323
env:
2424
BRANCH: ${{ github.head_ref || github.ref_name }}
25-
run: /workspace/bulwark -name CodeSASTGitLeaks -organization spectrocloud-labs -target $REPO -tags "branch:$BRANCH,options:--log-opts origin..HEAD"
25+
run: /workspace/bulwark -name CodeSASTGitLeaks -organization validator-labs -target $REPO -tags "branch:$BRANCH,options:--log-opts origin..HEAD"
2626

2727
- name: check-result
2828
shell: sh

.github/workflows/bulwark-gosec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
BRANCH: ${{ github.head_ref || github.ref_name }}
3232
GO111MODULE: on
33-
run: /workspace/bulwark -name CodeSASTGoSec -verbose -organization spectrocloud-labs -target $REPO -tags "branch:$BRANCH"
33+
run: /workspace/bulwark -name CodeSASTGoSec -verbose -organization validator-labs -target $REPO -tags "branch:$BRANCH"
3434

3535
- name: check-result
3636
shell: sh

.github/workflows/bulwark-govulncheck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
govulncheck-pr-scan:
1414
runs-on: [self-hosted, Linux, X64, validator]
1515
container:
16-
image: gcr.io/spectro-images-public/golang:1.21-alpine
16+
image: gcr.io/spectro-images-public/golang:1.22-alpine
1717
steps:
1818
- name: install-govulncheck
1919
run: GOBIN=/usr/local/bin go install golang.org/x/vuln/cmd/govulncheck@latest

.github/workflows/release.yaml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ defaults:
1818
jobs:
1919
release-please:
2020
permissions:
21-
contents: write # for google-github-actions/release-please-action to create release commit
22-
pull-requests: write # for google-github-actions/release-please-action to create release PR
21+
contents: write # for googleapis/release-please-action to create release commit
22+
pull-requests: write # for googleapis/release-please-action to create release PR
2323
runs-on: [self-hosted, Linux, X64, validator]
2424
outputs:
2525
releases_created: ${{ steps.release.outputs.releases_created }}
@@ -29,12 +29,10 @@ jobs:
2929
- name: Checkout
3030
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
3131

32-
- uses: google-github-actions/release-please-action@a37ac6e4f6449ce8b3f7607e4d97d0146028dc0b # v4
32+
- uses: googleapis/release-please-action@v4
3333
id: release
3434
with:
35-
command: manifest
3635
token: ${{secrets.PAT}}
37-
default-branch: main
3836

3937
release-charts:
4038
needs: release-please
@@ -49,10 +47,10 @@ jobs:
4947
with:
5048
token: ${{ secrets.PAT }}
5149
charts_dir: chart
52-
owner: spectrocloud-labs
50+
owner: validator-labs
5351
branch: ${{ env.GITHUB_PAGES_BRANCH }}
54-
commit_username: spectrocloud-labs-bot
55-
commit_email: bot@noreply.spectrocloud-labs.io
52+
commit_username: validator-labs-bot
53+
commit_email: bot@noreply.validator-labs.io
5654

5755
build-container:
5856
if: needs.release-please.outputs.releases_created == 'true'
@@ -64,7 +62,7 @@ jobs:
6462
packages: write
6563
id-token: write
6664
env:
67-
IMAGE_TAG: quay.io/spectrocloud-labs/validator-plugin-oci:${{ needs.release-please.outputs.tag_name }}
65+
IMAGE_TAG: quay.io/validator-labs/validator-plugin-oci:${{ needs.release-please.outputs.tag_name }}
6866
IMAGE_NAME: validator-plugin-oci
6967
steps:
7068
- name: Checkout
@@ -74,13 +72,13 @@ jobs:
7472

7573
- name: Set up Docker Buildx
7674
id: buildx
77-
uses: docker/setup-buildx-action@2b51285047da1547ffb1b2203d8be4c0af6b1f20 # v3
75+
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
7876

7977
- name: Login to GitHub Container Registry
8078
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3
8179
with:
8280
registry: "quay.io"
83-
username: tgillson
81+
username: ${{ secrets.QUAY_USER }}
8482
password: ${{ secrets.QUAY_TOKEN }}
8583

8684
- name: Build Docker Image
@@ -105,7 +103,7 @@ jobs:
105103
output-file: ./sbom-${{ env.IMAGE_NAME }}.spdx.json
106104

107105
- name: Attach SBOM to release
108-
uses: softprops/action-gh-release@3198ee18f814cdf787321b4a32a26ddbf37acc52 # v2
106+
uses: softprops/action-gh-release@69320dbe05506a9a39fc8ae11030b214ec2d1f87 # v2
109107
with:
110108
tag_name: ${{ needs.release-please.outputs.tag_name }}
111109
files: ./sbom-${{ env.IMAGE_NAME }}.spdx.json

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
git config --global --add safe.directory "$GITHUB_WORKSPACE"
3232
3333
- name: Codecov
34-
uses: codecov/codecov-action@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # v4
34+
uses: codecov/codecov-action@6d798873df2b1b8e5846dba6fb86631229fbcb17 # v4
3535
with:
3636
file: ./cover.out
3737
fail_ci_if_error: true
@@ -47,7 +47,7 @@ jobs:
4747
fetch-depth: 0
4848

4949
- name: Set up Helm
50-
uses: azure/setup-helm@b7246b12e77f7134dc2d460a3d5bad15bbe29390 # v4
50+
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4
5151
with:
5252
version: v3.11.2
5353

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"0.0.9"}
1+
{".":"0.0.10"}

0 commit comments

Comments
 (0)