Skip to content

Commit 00c0011

Browse files
authored
Merge branch 'main' into renovate/kubernetes-go
2 parents a7060b2 + a53bf65 commit 00c0011

26 files changed

+193
-158
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-golicenses.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
run: sudo apt-get install -y git
1717

1818
- name: checkout
19-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
19+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
2020

2121
- name: Set up Go
2222
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5

.github/workflows/bulwark-gosec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
go-version: '1.21'
2424

2525
- name: checkout
26-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
26+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
2727

2828
- name: run-gosec-scan
2929
shell: sh
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
@@ -19,7 +19,7 @@ jobs:
1919
run: GOBIN=/usr/local/bin go install golang.org/x/vuln/cmd/govulncheck@latest
2020

2121
- name: checkout
22-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
22+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
2323

2424
- name: govulncheck-scan
2525
run: |

.github/workflows/release.yaml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,12 @@ jobs:
2727
# Release-please creates a PR that tracks all changes
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
30+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
3131

32-
- uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # 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
@@ -43,16 +41,16 @@ jobs:
4341
runs-on: [self-hosted, Linux, X64, validator]
4442
if: needs.release-please.outputs.releases_created == 'true'
4543
steps:
46-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
44+
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
4745
- name: Publish Helm chart
4846
uses: stefanprodan/helm-gh-pages@master
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,23 +62,23 @@ jobs:
6462
packages: write
6563
id-token: write
6664
env:
67-
IMAGE_TAG: quay.io/spectrocloud-labs/validator-plugin-maas:${{ needs.release-please.outputs.tag_name }}
65+
IMAGE_TAG: quay.io/validator-labs/validator-plugin-maas:${{ needs.release-please.outputs.tag_name }}
6866
IMAGE_NAME: validator-plugin-maas
6967
steps:
7068
- name: Checkout
71-
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
69+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
7270
with:
7371
submodules: recursive
7472

7573
- name: Set up Docker Buildx
7674
id: buildx
77-
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # 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

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Run Unit Tests
1717
runs-on: [self-hosted, Linux, X64, validator]
1818
steps:
19-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
19+
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
2020

2121
- name: Set up Go
2222
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: [self-hosted, Linux, X64, validator]
4343
if: "!(contains(github.head_ref, 'release-please') || contains(github.ref, 'release-please'))"
4444
steps:
45-
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
45+
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
4646
with:
4747
fetch-depth: 0
4848

.release-please-manifest.json

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

0 commit comments

Comments
 (0)