Skip to content

Commit eebc55c

Browse files
authored
Merge pull request #127 from Shopify/pin-actions-commit
Pin GitHub Actions to commit
2 parents 8c91329 + 7cd91b6 commit eebc55c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
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
- package-ecosystem: "cargo"
48
directory: "/"
59
schedule:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
1717
- name: Add rustfmt and clippy
1818
run: rustup component add rustfmt clippy
1919
- name: Run cargo fmt
@@ -26,13 +26,13 @@ jobs:
2626
test:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
3030
- name: Run tests
3131
run: cargo test
3232

3333
build:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
3737
- name: Build
3838
run: cargo build --release

0 commit comments

Comments
 (0)