Skip to content

Commit 9cf74fa

Browse files
authored
Merge pull request #1046 from Shopify/pin-actions-commit
Pin GitHub Actions to commit
2 parents 20d7415 + 8f1b587 commit 9cf74fa

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
version: 2
22
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: weekly
37
# Enable version updates for npm
48
- package-ecosystem: "npm"
59
# Look for `package.json` and `lock` files in the `root` directory

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
matrix:
1111
version: [18, 20]
1212
steps:
13-
- uses: actions/checkout@master
14-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
14+
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
1515
with:
1616
node-version: ${{ matrix.version }}
1717
- name: Install

.github/workflows/close-waiting-for-response-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: close-issues
11-
uses: actions-cool/issues-helper@v3
11+
uses: actions-cool/issues-helper@a610082f8ac0cf03e357eb8dd0d5e2ba075e017e # v3.6.0
1212
with:
1313
actions: "close-issues"
1414
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/convert-to-js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Repo
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1616

1717
- name: Create lock file
1818
run: touch yarn.lock
1919

2020
- name: Setup Node.js
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
2222
with:
2323
node-version: 18.20.x
2424
cache: 'yarn'

.github/workflows/remove-labels-on-activity.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
remove-labels-on-activity:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions-ecosystem/action-remove-labels@v1
10+
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
11+
- uses: actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.2.0
1212
if: contains(github.event.issue.labels.*.name, 'Waiting for Response')
1313
with:
1414
labels: |

0 commit comments

Comments
 (0)