Skip to content

Commit 20ff1d0

Browse files
chore(deps): update from template
1 parent 908f36f commit 20ff1d0

32 files changed

Lines changed: 1605 additions & 187 deletions

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_commit: v0.8.15
1+
_commit: v0.8.27
22
_src_path: gh:helmut-hoffer-von-ankershoffen/oe-python-template
33
attestations_enabled: true
44
author_email: helmuthva@gmail.com

.github/workflows/test-and-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
wget -qO - https://aquasecurity.github.io/trivy-repo/deb/public.key | sudo apt-key add -
2727
echo deb https://aquasecurity.github.io/trivy-repo/deb $(lsb_release -sc) main | sudo tee -a /etc/apt/sources.list.d/trivy.list
2828
sudo apt-get update
29-
sudo apt-get install -y curl jq xsltproc gnupg2 trivy
29+
sudo apt-get install -y curl jq xsltproc gnupg2 imagemagick trivy
3030
3131
- name: Install project specific dependencies
3232
run: |
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: "CI Scheduled"
2+
3+
on:
4+
schedule:
5+
- cron: '0 7 * * *'
6+
7+
jobs:
8+
test-scheduled:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
id-token: write
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Install uv
20+
uses: astral-sh/setup-uv@f94ec6bedd8674c4426838e6b50417d36b6ab231 # v5.3.1
21+
with:
22+
version: "0.6.3"
23+
enable-cache: true
24+
cache-dependency-glob: uv.lock
25+
26+
- name: Install Python, venv and dependencies
27+
run: |
28+
uv sync --all-extras --frozen --link-mode=copy
29+
30+
- name: Create .env file
31+
uses: SpicyPizza/create-envfile@ace6d4f5d7802b600276c23ca417e669f1a06f6f # v2.0.3
32+
with:
33+
envkey_ENV_KEY: "ENV_VALUE"
34+
fail_on_empty: true
35+
36+
- name: Run tests marked as scheduled
37+
run: |
38+
uv run --all-extras nox -s test -p 3.11 -- -m scheduled

.github/workflows/vercel-preview.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
deploy-preview:
1010
if: "!contains(github.event.head_commit.message, '[skip ci]')"
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
deployments: write
15+
id-token: write
1216
steps:
1317
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1418

.github/workflows/vercel-production.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
deploy-production:
1010
if: "!contains(github.event.head_commit.message, '[skip ci]')"
1111
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
deployments: write
15+
id-token: write
1216
steps:
1317
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1418

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ repos:
5757
- id: requirements-txt-fixer
5858
exclude: "dist_vercel/requirements.txt"
5959
- id: trailing-whitespace
60-
exclude: "docs/source/_static|ATTRIBUTIONS.md"
60+
exclude: "docs/source/_static|ATTRIBUTIONS.md||API_REFEREENCE"
6161
- repo: https://github.com/Yelp/detect-secrets
6262
rev: v1.5.0
6363
hooks:

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
sphinx:
1010
builder: html
1111
configuration: docs/source/conf.py
12-
fail_on_warning: true
12+
fail_on_warning: false
1313

1414
# Formats of the documentation to be built
1515
formats:

0 commit comments

Comments
 (0)