Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
_commit: v0.8.10
_commit: v0.8.11
_src_path: https://github.com/serious-scaffold/ss-pybind11
author_email: msclock@126.com
author_name: l.feng
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
matrix:
arch: [aarch64, ppc64le, s390x, armv7l, x86_64, i686]
build: [manylinux, musllinux]
os: [ubuntu-latest]
os: [ubuntu-24.04] # renovate: github-runner
use_qemu: [aarch64 ppc64le s390x armv7l]
include:
- os: windows-2019
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8', '3.12']
runs-on: [ubuntu-22.04, macos-14, windows-2022]
runs-on: [ubuntu-22.04, macos-14, windows-2022] # renovate: github-runner

include:
- python-version: pypy-3.10
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04 # renovate: github-runner

name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
RENOVATE_PLATFORM: github
RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
RENOVATE_REPOSITORY_CACHE: enabled
image: ghcr.io/renovatebot/renovate:39.43.0@sha256:eec02425b9b16428ad16f0a50ec207b346eff17193cec3c891ff00fb261964e0
image: ghcr.io/renovatebot/renovate:39.49.0@sha256:9f44b9392d1da54a8f59dfd73d424d7d151787cd18d6f14778bcb8451ee07543
options: --user root
runs-on: ubuntu-24.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ repos:

# Check for renovate config
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.42.4
rev: 39.48.2
hooks:
- id: renovate-config-validator
stages: [manual]
Expand Down
16 changes: 16 additions & 0 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,22 @@
"pipx? install.* (?<depName>.*?)==(?<currentValue>.*?)[\\s\";]"
]
},
{
"customType": "regex",
"datasourceTemplate": "github-runners",
"depTypeTemplate": "github-runner",
"description": "Match GitHub runner defined in GitHub Actions matrix strategy",
"fileMatch": [
"^\\.github/workflows/.+\\.yml$",
"^template/.*\\.github.*/workflows/.+\\.yml(\\.jinja)?$"
],
"matchStringsStrategy": "recursive",
"matchStrings": [
"[-:] (.*) # renovate: github-runner",
"(?<depName>ubuntu|windows|macos)-(?<currentValue>[\\d\\.\\-\\w]+)"
],
"versioningTemplate": "docker"
},
{
"description": "Update vcpkg.json builtin-baseline with git hash",
"customType": "regex",
Expand Down