Skip to content

Add password parameter for pkcs12 key import #1548

Add password parameter for pkcs12 key import

Add password parameter for pkcs12 key import #1548

Workflow file for this run

# This GitHub action runs your tests for each commit push and/or PR. Optionally
# you can turn it on using a cron schedule for regular testing.
#
name: Code Check
on:
pull_request:
paths-ignore:
- 'README.md'
- '.vscode'
- '.gitignore'
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
push:
paths-ignore:
- 'README.md'
- '.vscode'
- '.gitignore'
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
# For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.),
# we recommend testing at a regular interval not necessarily tied to code changes. This will
# ensure you are alerted to something breaking due to an API change, even if the code did not
# change.
# schedule:
# - cron: '0 13 * * *'
jobs:
# ensure the code builds...
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4.1.0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: false
id: go
- uses: actions/cache@v3
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- name: Build
run: |
make build
lint:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: '^1.18.0' # The Go version to download (if necessary) and use.
cache: true
- uses: actions/cache@v3
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: make tools
- name: lint
run: |
make lint
gosec:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: '^1.18.0' # The Go version to download (if necessary) and use.
cache: true
- uses: actions/cache@v3
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: make tools
- name: gosec
run: |
make gosec