-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ Steps to reproduce the issue: | |
|
||
**Action version:** | ||
|
||
- Version: **microsoft/[email protected].1** | ||
- Version: **microsoft/[email protected].2** | ||
|
||
**Additional context** | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,11 @@ | |
name: Analyze | ||
on: | ||
push: | ||
branches: [ main, 'release/*', 'dependencies/*' ] | ||
branches: [main, 'release/*', 'dependencies/*'] | ||
pull_request: | ||
branches: [ main, 'release/*' ] | ||
branches: [main, 'release/*'] | ||
schedule: | ||
- cron: '42 18 * * 0' # At 6:42 PM, on Sunday each week | ||
- cron: '42 18 * * 0' # At 6:42 PM, on Sunday each week | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -25,15 +25,14 @@ jobs: | |
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Run PSRule analysis | ||
uses: microsoft/[email protected] | ||
with: | ||
modules: PSRule.Rules.MSFT.OSS | ||
prerelease: true | ||
- name: Run PSRule analysis | ||
uses: microsoft/[email protected] | ||
with: | ||
modules: PSRule.Rules.MSFT.OSS | ||
prerelease: true | ||
|
||
devskim: | ||
name: Analyze with DevSkim | ||
|
@@ -43,7 +42,6 @@ jobs: | |
contents: read | ||
security-events: write | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ To get the latest stable release use: | |
|
||
```yaml | ||
- name: Run PSRule analysis | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
``` | ||
To get the latest bits use: | ||
|
@@ -29,7 +29,7 @@ For example: | |
|
||
```yaml | ||
- name: Run PSRule analysis | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
with: | ||
version: '1.11.1' | ||
``` | ||
|
@@ -186,7 +186,7 @@ When set: | |
To use PSRule: | ||
|
||
1. See [Creating a workflow file](https://help.github.com/en/articles/configuring-a-workflow#creating-a-workflow-file). | ||
2. Reference `microsoft/[email protected].1`. | ||
2. Reference `microsoft/[email protected].2`. | ||
For example: | ||
|
||
```yaml | ||
|
@@ -202,7 +202,7 @@ jobs: | |
uses: actions/checkout@v3 | ||
- name: Run PSRule analysis | ||
uses: microsoft/[email protected].1 | ||
uses: microsoft/[email protected].2 | ||
``` | ||
|
||
3. Create rules within the `.ps-rule/` directory. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters