Skip to content

Commit 25d0ccf

Browse files
committed
use fixed comments for all GitHub Actions used in workflows
1 parent 6d51e55 commit 25d0ccf

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
1515
with:
1616
fetch-depth: 0
1717

1818
- name: set up Python
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
2020
with:
2121
python-version: '3.10'
2222

2323
- name: checkout easybuild framework
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
2525
with:
2626
repository: easybuilders/easybuild-framework
2727
path: src/easybuild-framework

.github/workflows/flake8.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
1212

1313
- name: set up Python
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
1515
with:
1616
python-version: '3.10'
1717

1818
- name: flake8 Lint
19-
uses: py-actions/flake8@v2
19+
uses: py-actions/flake8@84ec6726560b6d5bd68f2a5bed83d62b52bb50ba # v2.3.0

.github/workflows/markdown-linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
1313

1414
- name: MarkdownLint
15-
uses: DavidAnson/markdownlint-cli2-action@v10
15+
uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 # v19.1.0
1616
with:
1717
# all markdown, except filter out {demos,version-specific}/* for now, until we fix issues in those sections
1818
globs: |

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
13+
1314
with:
1415
fetch-depth: 0
1516

1617
- name: set up Python
17-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
1819
with:
1920
python-version: '3.10'
2021

2122
- name: Codespell action
22-
uses: codespell-project/actions-codespell@master
23+
uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
2324
with:
2425
check_filenames: true
2526
ignore_words_list: atleast,ninjs,simpy,proovread,namd,precice,crate,ake
@@ -32,7 +33,7 @@ jobs:
3233
run: python ./.github/workflows/link_check.py
3334

3435
- name: checkout easybuild framework
35-
uses: actions/checkout@v4
36+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
3637
with:
3738
repository: easybuilders/easybuild-framework
3839
path: src/easybuild-framework

.github/workflows/yamllint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
lintAllTheThings:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
1111
- name: yaml-lint
12-
uses: ibiqlik/action-yamllint@v3
12+
uses: ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c # v3.1.1
1313
with:
1414
config_file: .yamllint.yml

0 commit comments

Comments
 (0)