Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gosec #387

Merged
merged 3 commits into from
Jan 30, 2025
Merged

Gosec #387

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/code-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Code scanning"

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "26 14 * * 2"

jobs:
gosec:
permissions:
# Required to upload SARIF files
security-events: write
# for actions/checkout to fetch code
contents: read
# call reusable workflow from central '.github' repo
uses: open-component-model/.github/.github/workflows/code-scan.yml@main
secrets: inherit
2 changes: 1 addition & 1 deletion content/docs/tutorials/best-practices-with-ocm.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Helm chart assume the following folder structure. The example is built using con
The Dockerfile has the following content:

```Dockerfile
FROM golang:1.22 as build
FROM golang:1.23.5 as build

WORKDIR /go/src/app
COPY . .
Expand Down
Loading