Skip to content

Commit

Permalink
Updated CodeQL workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne0nd0g committed Dec 19, 2023
1 parent c153bed commit a681262
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,24 @@ name: "CodeQL"
on:
push:
branches: [ "main", "dev" ]
paths-ignore:
- '.github/**'
- 'docs/**'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'Makefile'
- 'README.MD'
pull_request:
branches: [ "main", "dev" ]
paths-ignore:
- '.github/**'
- 'docs/**'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'Makefile'
- 'README.MD'
schedule:
- cron: '32 7 * * 4'

Expand Down Expand Up @@ -79,3 +95,29 @@ jobs:
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

# Steps above here were provided in the default CodeQL YAML workflow file.
# Steps below here are custom steps added to the default CodeQL YAML workflow file.
- name: GoVulnCheck
id: govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: '1.21'
go-package: './...'

- name: Gosec Security Scanner
id: gosec
uses: securego/gosec@master

- name: Go Report Card - Install
id: goreportcard_install
working-directory: /tmp
run: |
git clone https://github.com/gojp/goreportcard.git
cd goreportcard
make install
go install ./cmd/goreportcard-cli
- name: Go Report Card - Run
id: goreportcard_run
run: 'goreportcard-cli -v' # This renames the files in the ./rpc directory to *.grc.bak causing builds to fail
8 changes: 8 additions & 0 deletions docs/CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 2.X.X - 202X-XX-XX

### Added

- Support to decode Simplified Chinese (Code Page 936) encoding to UTF-8
- Support to decode Traditional Chinese (Code Page 950) encoding to UTF-8
- Support to decode Korean (Code Page 949) encoding to UTF-8

## 2.2.0 - 2023-12-14

### Added
Expand Down

0 comments on commit a681262

Please sign in to comment.