Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ main, develop ]

env:
GO_VERSION: '1.24.12'
GO_VERSION: '1.25.11'
COVERAGE_THRESHOLD: 4

jobs:
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
run: go install github.com/securego/gosec/v2/cmd/gosec@latest

- name: Run Gosec Security Scanner
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude-dir=proto -exclude-dir=internal/db ./... || true
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude=G101,G112,G115,G201,G202,G401,G501,G706 -exclude-dir=proto -exclude-dir=internal/db ./... || true
continue-on-error: true

- name: Upload SARIF file
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
run: |
cd frontend
yarn install --frozen-lockfile
yarn build
npx expo export --platform web --output-dir dist

- name: Upload build artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -283,9 +283,9 @@ jobs:
run: sqlc generate

- name: golangci-lint
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v8
with:
version: latest
version: v2.12.2
args: --timeout=5m

notify:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
type: string

env:
GO_VERSION: '1.24.12'
GO_VERSION: '1.25.11'

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: [ main ]

env:
GO_VERSION: '1.24.12'
GO_VERSION: '1.25.11'

jobs:
vulnerability-scan:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
run: go install github.com/securego/gosec/v2/cmd/gosec@latest

- name: Run Gosec Security Scanner
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude-dir=proto -exclude-dir=internal/db ./... || true
run: gosec -fmt sarif -out gosec.sarif -exclude-generated -exclude=G101,G112,G115,G201,G202,G401,G501,G706 -exclude-dir=proto -exclude-dir=internal/db ./... || true
continue-on-error: true

- name: Upload SARIF file
Expand Down
Loading
Loading