forked from dataplat/dbatools
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) 路 1.27 KB
/
Copy pathgithub-actions-security.yml
File metadata and controls
54 lines (45 loc) 路 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: GitHub Actions Security
on:
pull_request:
paths:
- ".github/actionlint.yaml"
- ".github/dependabot.yml"
- ".github/scripts/Test-ActionlintWorkflows.ps1"
- ".github/scripts/Test-GitHubActionsPins.ps1"
- ".github/workflows/**"
push:
branches-ignore:
- master
tags-ignore:
- "**"
paths:
- ".github/actionlint.yaml"
- ".github/dependabot.yml"
- ".github/scripts/Test-ActionlintWorkflows.ps1"
- ".github/scripts/Test-GitHubActionsPins.ps1"
- ".github/workflows/**"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: gha-security-${{ github.ref }}
cancel-in-progress: true
jobs:
action-pinning:
name: Require pinned actions
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Verify action refs
shell: pwsh
run: ./.github/scripts/Test-GitHubActionsPins.ps1
actionlint:
name: Lint workflows
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Run actionlint
shell: pwsh
run: ./.github/scripts/Test-ActionlintWorkflows.ps1