summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-12-29 16:45:48 -0600
committerGitHub <noreply@github.com>2022-12-29 16:45:48 -0600
commitdc4e2e282d60a8387e60ac5fd2b1813b9df3535d (patch)
tree8664fdc6dd332dd55c2a0fb11970c856fb900bd4 /.github
parent13df6badcf97ad379dc88bb9773bdabc1520a71d (diff)
parent4703e60eb7ddb870bf2cc69eaafd8e12fa966636 (diff)
downloadpyramid-dc4e2e282d60a8387e60ac5fd2b1813b9df3535d.tar.gz
pyramid-dc4e2e282d60a8387e60ac5fd2b1813b9df3535d.tar.bz2
pyramid-dc4e2e282d60a8387e60ac5fd2b1813b9df3535d.zip
Merge branch 'master' into main
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot.yml10
-rw-r--r--.github/workflows/ci-tests.yml16
2 files changed, 18 insertions, 8 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..573705517
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,10 @@
+# Set update schedule for GitHub Actions
+
+version: 2
+updates:
+
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ # Check for updates to GitHub Actions every weekday
+ interval: "daily"
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index 4fb4e48a1..8eeb366fd 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -46,9 +46,9 @@ jobs:
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
architecture: ${{ matrix.architecture }}
@@ -59,9 +59,9 @@ jobs:
runs-on: ubuntu-20.04
name: Validate coverage
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup python
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v4
with:
python-version: 3.8
architecture: x64
@@ -71,9 +71,9 @@ jobs:
runs-on: ubuntu-20.04
name: Build the documentation
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: 3.8
architecture: x64
@@ -83,9 +83,9 @@ jobs:
runs-on: ubuntu-20.04
name: Lint the package
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: Setup python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: 3.8
architecture: x64