Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…thenticator-companion

# Conflicts:
#	package.json
  • Loading branch information
akopachov committed Aug 30, 2023
2 parents bb7edb8 + 91397ee commit a41684b
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 3 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/snyk-security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Snyk Security

on:
push:
branches: ["master" ]
pull_request:
branches: ["master"]

permissions:
contents: read

jobs:
snyk:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
runs-on: ubuntu-latest
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Set up Snyk CLI to check for security issues
uses: snyk/actions/setup@master

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*

- name: Snyk Code test
run: snyk code test --sarif > snyk-code.sarif || true

- name: Snyk Open Source monitor
run: snyk monitor --all-projects || true

- name: Snyk IaC test and report
run: snyk iac test --report || true

- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: snyk-code.sarif
4 changes: 2 additions & 2 deletions .github/workflows/virustotal-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: VirusTotal scan for release

on:
release:
types: [released]
types: [published]

jobs:
virustotal:
Expand All @@ -18,4 +18,4 @@ jobs:
files: |
.exe$
.dmg$
.AppImage$
.AppImage$
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flipper-authenticator-companion",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"description": "Flipper Authenticator Companion App",
"main": "src/electron.cjs",
Expand Down

0 comments on commit a41684b

Please sign in to comment.