Skip to content

Commit

Permalink
Harden GitHub Actions CI (#1)
Browse files Browse the repository at this point in the history
Fix small issues with CHANGELOG and README
  • Loading branch information
complexspaces authored May 12, 2021
1 parent f7b7cd5 commit 9923bb0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Security audit
permissions:
contents: read
on:
schedule:
- cron: '0 0 * * 0'
Expand All @@ -13,6 +15,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
pull_request:

name: CI
permissions:
contents: read

jobs:
clippy:
Expand All @@ -18,6 +20,8 @@ jobs:
- 1.46.0
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -33,6 +37,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false

- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -46,6 +53,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ Notable changes to this project will be documented in the [keep a changelog](htt

Inital release

[Unreleased]: https://github.com/1Password/password-rules-parser/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/1Password/electron-hardener/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/1Password/electron-hardener/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ address space, it should not be able to change what an app does at runtime.

The library provides two sets of functionality:
- An interface to view and modify the status of fuses in an application, similar to the [official fuses package](https://github.com/electron/fuses).
- A fast and configurable alternative implementation of the [electron-evil-feature-patcher](https://github.com/antelle/electron-evil-feature-patcher) tool created by [Dimitri Witkowski]().
- A fast and configurable alternative implementation of the [electron-evil-feature-patcher](https://github.com/antelle/electron-evil-feature-patcher) tool created by [Dimitri Witkowski].
All patches it can perform are also exposed in this crate. See its README for more details on how it works.

## Usage
Expand Down

0 comments on commit 9923bb0

Please sign in to comment.