Skip to content

Commit 885d865

Browse files
authored
Pin GitHub Actions to commit SHAs and update dependabot config
1 parent 7230a9d commit 885d865

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
commit-message:
6+
prefix: "[bot] "
7+
cooldown:
8+
default-days: 7
9+
schedule:
10+
interval: "weekly"
11+
day: "wednesday"
12+
time: "11:00"
13+
timezone: "America/Los_Angeles"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
uses: actions/checkout@master
1212

1313
- name: Set up Ruby
14-
uses: actions/setup-ruby@v1
14+
uses: actions/setup-ruby@e932e7af67fc4a8fc77bd86b744acd4e42fe3543 # v1
1515
with:
1616
ruby-version: '2.7.x'
1717
bundler-cache: true
1818

1919
- name: Cache bundled gems
20-
uses: actions/cache@v2
20+
uses: actions/cache@8492260343ad570701412c2f464a5877dc76bace # v2
2121
with:
2222
path: vendor/bundle
2323
key: ${{ runner.os }}-gems-${{ hashFiles('Gemfile.lock') }}

0 commit comments

Comments
 (0)