Skip to content

Commit ce1e335

Browse files
authored
Merge pull request #4 from DimitriPapadopoulos/actions
Keep GitHub Actions up to date with Dependabot
2 parents 833c32a + 26276fe commit ce1e335

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See: https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#about-the-dependabotyml-file
2+
version: 2
3+
4+
updates:
5+
# Configure check for outdated GitHub Actions actions in workflows.
6+
# See: https://docs.github.com/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
7+
- package-ecosystem: github-actions
8+
directory: / # Check the repository's workflows under /.github/workflows/
9+
schedule:
10+
interval: daily

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@master
13+
uses: actions/checkout@v3
1414
- uses: actions/setup-python@v1
1515
- run: pip install codespell
1616
- uses: ./
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@master
27+
uses: actions/checkout@v3
2828
- uses: actions/setup-python@v1
2929
- run: pip install git+https://github.com/codespell-project/codespell.git
3030
- uses: ./

0 commit comments

Comments
 (0)