Skip to content

Commit 8b5568c

Browse files
authored
Merge pull request #9 from jaimergp/pin-gha
Pin Github Actions actions to their hashes
2 parents 0153bd2 + f8a258c commit 8b5568c

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
commit-message:
8+
prefix: "ci(dependabot):"
9+
groups:
10+
github-actions:
11+
patterns:
12+
- "*"

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1616

17-
- uses: actions/setup-python@v2
17+
- uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020

@@ -27,4 +27,4 @@ jobs:
2727
run: tox -e py
2828

2929
- name: Coverage
30-
uses: codecov/codecov-action@v2
30+
uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b # v2.1.0

0 commit comments

Comments
 (0)