-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: nitesh3108 <[email protected]> Co-authored-by: mdutka-dell <[email protected]> Co-authored-by: Chiman Jain <[email protected]> Co-authored-by: Bartosz Ciesielczyk <[email protected]>
- Loading branch information
1 parent
e6e6402
commit a238d6a
Showing
10 changed files
with
39 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,23 +32,23 @@ jobs: | |
go-version: "1.22" | ||
cache: false | ||
- name: Checkout the code | ||
uses: actions/checkout@v4.1.0 | ||
uses: actions/checkout@v4 | ||
- name: Vendor packages | ||
run: | | ||
go mod vendor | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
uses: golangci/golangci-lint-action@v4 | ||
with: | ||
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version | ||
version: v1.53 | ||
version: v1.56.2 | ||
skip-cache: true | ||
|
||
malware-security-scan: | ||
name: Malware Scanner | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v4.1.0 | ||
uses: actions/checkout@v4 | ||
- name: Malware Scanner | ||
uses: dell/common-github-actions/malware-scanner@main | ||
with: | ||
|
@@ -60,7 +60,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v4.1.0 | ||
uses: actions/checkout@v4 | ||
- name: Run the forbidden words scan | ||
uses: dell/common-github-actions/code-sanitizer@main | ||
with: | ||
|
@@ -71,7 +71,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v4.1.0 | ||
uses: actions/checkout@v4 | ||
- name: Run Hadolint | ||
uses: hadolint/[email protected] | ||
|
||
|
@@ -105,7 +105,11 @@ jobs: | |
git config --global url."https://csmbot:[email protected]".insteadOf "https://github.com" | ||
echo "machine github.com login csmbot password $TOKEN" >> ~/.netrc | ||
- name: Checkout the code | ||
uses: actions/[email protected] | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
cache: false | ||
- name: Vendor packages | ||
run: | | ||
go mod vendor | ||
|
@@ -136,7 +140,7 @@ jobs: | |
go-version: "1.22" | ||
cache: false | ||
- name: Checkout the code | ||
uses: actions/checkout@v4.1.0 | ||
uses: actions/checkout@v4 | ||
- name: "Vendor packages" | ||
run: | | ||
go mod vendor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Common base image for all CSM images. When base image is upgraded, update the following 3 lines with URL, Version, and DEFAULT_BASEIMAGE variable. | ||
# URL: https://catalog.redhat.com/software/containers/ubi9/ubi-micro/615bdf943f6014fa45ae1b58?architecture=amd64&image=65425acee668a4a85da08f2e | ||
# Version: ubi9/ubi-micro 9.3-6 | ||
DEFAULT_BASEIMAGE="registry.access.redhat.com/ubi9/ubi-micro@sha256:b7d8fd2840e92e8adc68414e13d859763ef33c3d4c4e27f910e939c00d642c29" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/dell/cosi | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.45.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters