Skip to content

Commit

Permalink
fix: pin go version in release workflows and disable secret scan (#178)
Browse files Browse the repository at this point in the history
pin go version in release workflows and disable secret scan
  • Loading branch information
Eikykun committed Mar 29, 2024
1 parent 692384a commit f5921a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,21 +117,6 @@ jobs:

# The TruffleHog OSS Github Action can be used to scan a range of commits for leaked credentials. The action will fail if any results are found.
# More see: https://github.com/marketplace/actions/trufflehog-oss
SecretScan:
name: Secret Scan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: TruffleHog OSS
uses: trufflesecurity/trufflehog@main
with:
path: ./
base: ${{ github.event.repository.default_branch }}
head: HEAD
extra_args: --debug --json

# TODO: Uncomment when the repository is publicly.
# DependencyReview:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- "v*"
permissions:
contents: write
env:
GO_VERSION: '1.19'

jobs:
Test:
name: Unit Test
Expand Down

0 comments on commit f5921a3

Please sign in to comment.