Skip to content

Commit e3a189c

Browse files
Pin GitHub Actions workflows to a specific version (#3548)
1 parent 42dcefb commit e3a189c

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
housekeeping:
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
1818

1919
- name: Set up Python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
2121
with:
2222
python-version: 3.11.2
2323

@@ -55,9 +55,9 @@ jobs:
5555
matrix:
5656
python-version: [3.7, 3.8, 3.9, 3.10.6, 3.11.2]
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
5959

60-
- uses: actions/setup-python@v4
60+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
6161
with:
6262
python-version: ${{ matrix.python-version }}
6363

.github/workflows/issue-commenter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
name: Comments for every NEW issue.
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
1313

1414
- name: Read issue-comment.md
1515
id: issue-comment
16-
uses: juliangruber/read-file-action@v1
16+
uses: juliangruber/read-file-action@02bbba9876a8f870efd4ad64e3b9088d3fb94d4b
1717
with:
1818
path: .github/issue-comment.md
1919

2020
- name: Base comment
21-
uses: jd-0001/gh-action-comment-on-new-issue@v2.0.3
21+
uses: jd-0001/gh-action-comment-on-new-issue@c443e1151cc69b146fd6918cc983ec1bd27ab254
2222
with:
2323
message: "${{ steps.issue-comment.outputs.content }}"
2424
ignore-label: ":anger: prickle"

.github/workflows/pr-commenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
pr-comment:
77
runs-on: ubuntu-22.04
88
steps:
9-
- uses: exercism/pr-commenter-action@v1.5.1
9+
- uses: exercism/pr-commenter-action@085ef62d2a541a112c3ade1d24deea83665ea186
1010
with:
1111
github-token: "${{ github.token }}"
1212
config-file: ".github/pr-commenter.yml"

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
stale:
99
runs-on: ubuntu-22.04
1010
steps:
11-
- uses: actions/stale@v8
11+
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84
1212
with:
1313
repo-token: ${{ secrets.GITHUB_TOKEN }}
1414
days-before-stale: 21

.github/workflows/test-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
test-runner:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
1414
- name: Run test-runner
1515
run: docker-compose run test-runner

0 commit comments

Comments
 (0)