diff options
| author | Michael Merickel <michael@merickel.org> | 2022-12-30 11:08:44 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-30 11:08:44 -0600 |
| commit | 93a69202dc225dc5ae659824751f59c2d33f6373 (patch) | |
| tree | f7c7b75cedfbfa3bb17257abd55d2eeaae8facec /.github | |
| parent | 7ecd8d6f75d9d21f3f7b10e4c84958cf3aa8fb17 (diff) | |
| parent | 4703e60eb7ddb870bf2cc69eaafd8e12fa966636 (diff) | |
| download | pyramid-93a69202dc225dc5ae659824751f59c2d33f6373.tar.gz pyramid-93a69202dc225dc5ae659824751f59c2d33f6373.tar.bz2 pyramid-93a69202dc225dc5ae659824751f59c2d33f6373.zip | |
Merge branch 'master' into py311
Diffstat (limited to '.github')
| -rw-r--r-- | .github/dependabot.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/ci-tests.yml | 16 |
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 13b849d0f..f9ade8eda 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -47,9 +47,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 }} @@ -60,9 +60,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 @@ -72,9 +72,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 @@ -84,9 +84,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 |
