Skip to content

Commit cf8e184

Browse files
authored
Unquote all GitHub Action names to fix auto-updating comments (#3121)
1 parent 26c1b3f commit cf8e184

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: "Checkout repository"
18-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1919

2020
- name: "Setup Python"
21-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1" # v4.7.0
21+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
2222
with:
2323
python-version: "3.x"
2424
cache: "pip"
@@ -87,10 +87,10 @@ jobs:
8787
timeout-minutes: 30
8888
steps:
8989
- name: "Checkout repository"
90-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
90+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
9191

9292
- name: "Setup Python ${{ matrix.python-version }}"
93-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1" # v4.7.0
93+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
9494
with:
9595
python-version: ${{ matrix.python-version }}
9696
allow-prereleases: true
@@ -106,7 +106,7 @@ jobs:
106106
NOX_SESSION: ${{ matrix.nox-session }}
107107

108108
- name: "Upload artifact"
109-
uses: "actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce" # v3.1.2
109+
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
110110
with:
111111
name: coverage-data
112112
path: ".coverage.*"
@@ -119,18 +119,18 @@ jobs:
119119
needs: test
120120
steps:
121121
- name: "Checkout repository"
122-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
122+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
123123

124124
- name: "Setup Python"
125-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1" # v4.7.0
125+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
126126
with:
127127
python-version: "3.x"
128128

129129
- name: "Install coverage"
130130
run: "python -m pip install --upgrade coverage"
131131

132132
- name: "Download artifact"
133-
uses: "actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a" # v3.0.2
133+
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
134134
with:
135135
name: coverage-data
136136

@@ -142,7 +142,7 @@ jobs:
142142
143143
- if: ${{ failure() }}
144144
name: "Upload report if check failed"
145-
uses: "actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce" # v3.1.2
145+
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
146146
with:
147147
name: coverage-report
148148
path: htmlcov

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ jobs:
2020
security-events: write
2121
steps:
2222
- name: "Checkout repository"
23-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
23+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2424

2525
- name: "Run CodeQL init"
26-
uses: "github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a" # v2.13.4
26+
uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.13.4
2727
with:
2828
config-file: "./.github/codeql.yml"
2929
languages: "python"
3030

3131
- name: "Run CodeQL autobuild"
32-
uses: "github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a" # v2.13.4
32+
uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.13.4
3333

3434
- name: "Run CodeQL analyze"
35-
uses: "github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a" # v2.13.4
35+
uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.13.4

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: "Checkout repository"
18-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
18+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1919

2020
- name: "Setup Python"
21-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1" # v4.7.0
21+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
2222
with:
2323
python-version: "3.x"
2424

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ jobs:
1111

1212
steps:
1313
- name: "Checkout repository"
14-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
14+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1515

1616
- name: "Setup Python"
17-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1" # v4.7.0
17+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
1818
with:
1919
python-version: "3.x"
2020
cache: pip
2121

2222
- name: "Run pre-commit"
23-
uses: "pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507" # v3.0.0
23+
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # v3.0.0
2424

2525
- name: "Install dependencies"
2626
run: python -m pip install nox

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- name: "Checkout repository"
22-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
22+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2323

2424
- name: "Setup Python"
25-
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1" # v4.7.0
25+
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
2626
with:
2727
python-version: "3.x"
2828

@@ -40,7 +40,7 @@ jobs:
4040
cd dist && echo "::set-output name=hashes::$(sha256sum * | base64 -w0)"
4141
4242
- name: "Upload dists"
43-
uses: "actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce" # v3.1.2
43+
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
4444
with:
4545
name: "dist"
4646
path: "dist/"
@@ -53,7 +53,7 @@ jobs:
5353
actions: read
5454
contents: write
5555
id-token: write # Needed to access the workflow's OIDC identity.
56-
uses: "slsa-framework/slsa-github-generator/.github/workflows/[email protected]"
56+
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected]
5757
with:
5858
base64-subjects: "${{ needs.build.outputs.hashes }}"
5959
upload-assets: true
@@ -70,7 +70,7 @@ jobs:
7070

7171
steps:
7272
- name: "Download dists"
73-
uses: "actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a" # v3.0.2
73+
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
7474
with:
7575
name: "dist"
7676
path: "dist/"
@@ -82,4 +82,4 @@ jobs:
8282
gh release upload ${{ github.ref_name }} dist/* --repo ${{ github.repository }}
8383
8484
- name: "Publish dists to PyPI"
85-
uses: "pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8" # v1.8.8
85+
uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8 # v1.8.8

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020

2121
steps:
2222
- name: "Checkout repository"
23-
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744" # v3.6.0
23+
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
2424
with:
2525
persist-credentials: false
2626

2727
- name: "Run Scorecard"
28-
uses: "ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031" # v2.2.0
28+
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0
2929
with:
3030
results_file: results.sarif
3131
results_format: sarif

0 commit comments

Comments
 (0)