File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 34
34
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
35
35
36
36
steps :
37
- - name : Checkout repository
37
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} ) "
38
38
uses : actions/checkout@v3
39
39
40
40
# Initializes the CodeQL tools for scanning.
Original file line number Diff line number Diff line change 12
12
name : Build and Publish Docker image
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - name : Checkout code
15
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} ) "
16
16
uses : actions/checkout@v3
17
17
- name : Set up QEMU
18
18
uses : docker/setup-qemu-action@v2
Original file line number Diff line number Diff line change 10
10
name : Check for broken links in Markdown files
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v3
13
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} )"
14
+ uses : actions/checkout@v3
14
15
- uses : gaurav-nelson/github-action-markdown-link-check@v1
15
16
with :
16
17
base-branch : ' main'
21
22
name : Check Spelling Misspell All Files In Commit
22
23
runs-on : ubuntu-latest
23
24
steps :
24
- - uses : actions/checkout@v3
25
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} )"
26
+ uses : actions/checkout@v3
25
27
- name : Install
26
28
run : wget -O - -q https://git.io/misspell | sh -s -- -b .
27
29
- name : Misspell
30
32
name : Run pre-commit # https://pre-commit.com/
31
33
runs-on : ubuntu-latest
32
34
steps :
33
- - uses : actions/checkout@v3
35
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} )"
36
+ uses : actions/checkout@v3
34
37
- uses : actions/setup-python@v4 # https://www.python.org/
35
38
with :
36
39
python-version : ' 3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
Original file line number Diff line number Diff line change 13
13
name : Super-Linter
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - name : Checkout Code
16
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} ) "
17
17
uses : actions/checkout@v3
18
18
with :
19
19
# Full git history is needed to get a proper list of changed files within `super-linter`
You can’t perform that action at this time.
0 commit comments