Skip to content

Commit 6489879

Browse files
committed
Merge branch 'main' of github.com:rpdelaney/reeder
2 parents 59041b0 + 0b57ff2 commit 6489879

File tree

4 files changed

+1227
-959
lines changed

4 files changed

+1227
-959
lines changed

.github/workflows/tests.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,26 @@ jobs:
1717
python-version: ["3.13"]
1818
steps:
1919
- name: check out repository
20-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
with:
2222
persist-credentials: false
2323
- name: install requested python version
2424
id: setup-python
25-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
25+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: install uv
29-
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1
29+
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7.1.0
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
- name: load cached venv
3333
id: cached-dependencies
34-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
34+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3535
with:
3636
path: .venv
3737
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/uv.lock') }}
3838
- name: cache pre-commit hooks
39-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
39+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4040
with:
4141
path: ~/.cache/pre-commit
4242
key: pre-commit-cache-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -56,21 +56,21 @@ jobs:
5656
runs-on: ubuntu-latest
5757
steps:
5858
- name: check out repository
59-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
59+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6060
with:
6161
persist-credentials: false
6262
- name: install python
6363
id: setup-python
64-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
64+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
6565
with:
6666
python-version: ${{ matrix.python-version }}
6767
- name: install uv
68-
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca # v6.0.1
68+
uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7.1.0
6969
with:
7070
python-version: ${{ matrix.python-version }}
7171
- name: load cached venv
7272
id: cached-dependencies
73-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
73+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
7474
with:
7575
path: .venv
7676
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/uv.lock') }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ repos:
1111
args: [--pytest-test-first]
1212

1313
- repo: https://github.com/renovatebot/pre-commit-hooks
14-
rev: 41.131.8
14+
rev: 41.146.0
1515
hooks:
1616
- id: renovate-config-validator

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13-slim-bookworm
1+
FROM python:3.14-slim-bookworm
22
RUN apt-get update && apt-get upgrade -y \
33
&& apt-get clean \
44
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)