Skip to content

Commit

Permalink
Remove dependabot for GitHub Actions
Browse files Browse the repository at this point in the history
- It only seems to catch some dependencies, not all
- Its PRs (without batching) are kind of noisy
- Despite the GitHub docs saying otherwise, it seems to open PRs for
  forks...
- GitHub Actions seem to use semantic versioning pretty much
  consistently, so this should hopefully work out without explicit
  pinning.
  • Loading branch information
The-Compiler committed Oct 15, 2020
1 parent 0821931 commit fa5e04f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .github/dependabot.yml

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -39,10 +39,10 @@ jobs:
.tox
~/.cache/pip
key: "${{ matrix.testenv }}-${{ hashFiles('misc/requirements/requirements-*.txt') }}-${{ hashFiles('requirements.txt') }}"
- uses: actions/setup-python@v2.1.3
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: actions/setup-node@v2.1.2
- uses: actions/setup-node@v2-beta
with:
node-version: '12.x'
if: "matrix.testenv == 'eslint'"
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
~/.cache/pip
key: "${{ matrix.testenv }}-${{ matrix.os }}-${{ matrix.python }}-${{ hashFiles('misc/requirements/requirements-*.txt') }}-${{ hashFiles('requirements.txt') }}"
- name: Set up Python
uses: actions/setup-python@v2.1.3
uses: actions/setup-python@v2
with:
python-version: "${{ matrix.python }}"
- name: Set up problem matchers
Expand All @@ -178,7 +178,7 @@ jobs:
if: "failure()"
- name: Upload coverage
if: "endsWith(matrix.testenv, '-cov')"
uses: codecov/codecov-action@v1.0.13
uses: codecov/codecov-action@v1
with:
name: "${{ matrix.testenv }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/recompile-requirements.yml
Expand Up @@ -20,11 +20,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2.1.3
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Set up Python 3.8
uses: actions/setup-python@v2.1.3
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Recompile requirements
Expand Down

0 comments on commit fa5e04f

Please sign in to comment.