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
32 changes: 26 additions & 6 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,24 @@ jobs:
with:
token: ${{ steps.generate-token.outputs.token }}
ref: ${{github.event.pull_request.head.ref}}
- name: Install poetry
run: pipx install poetry
- name: Set up python
id: setup-python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
cache: "poetry"
- name: Install poetry
run: pipx install poetry==2.3.2 || pipx upgrade poetry
env:
PIPX_DEFAULT_PYTHON: ${{ steps.setup-python.outputs.python-path }}
- name: Cache Poetry artifacts
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry/artifacts
~/.cache/pip
key: poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }}
restore-keys: |
poetry-${{ runner.os }}-
- name: Install packages
run: |
make lint-setup
Expand All @@ -132,14 +142,24 @@ jobs:
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install poetry
run: pipx install poetry
- name: Set up python
id: setup-python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
cache: "poetry"
- name: Install poetry
run: pipx install poetry==2.3.2 || pipx upgrade poetry
env:
PIPX_DEFAULT_PYTHON: ${{ steps.setup-python.outputs.python-path }}
- name: Cache Poetry artifacts
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry/artifacts
~/.cache/pip
key: poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }}
restore-keys: |
poetry-${{ runner.os }}-
- name: Install packages
run: |
make dev-setup
Expand Down
7 changes: 4 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# GitHub Workflows Release Notes

## 0.0.3-dev - 2026-02-12
## 0.0.3-dev - 2026-02-13

### Features

- python workflow: ensure python version consistency (PR #246 by @chicco785)
- add-to-project wf: add stale issues bot (PR #231 by @chicco785)
- support ALL for deployment (PR #222 by @chicco785)
- Support secret injection via .env during docker image build (PR #220 by
Expand Down Expand Up @@ -85,12 +86,12 @@

### Dependencies

- Bump reproducible-containers/buildkit-cache-dance from 3.3.0 to 3.3.1 (PR #244
by @dependabot[bot])
- Bump WyriHaximus/github-action-get-previous-tag from 1 to 2 (PR #245 by
@dependabot[bot])
- Bump aws-actions/configure-aws-credentials from 5 to 6 (PR #243 by
@dependabot[bot])
- Bump reproducible-containers/buildkit-cache-dance from 3.3.0 to 3.3.1 (PR #244
by @dependabot[bot])
- Bump dawidd6/action-download-artifact from 12 to 14 (PR #241 by
@dependabot[bot])
- Bump dawidd6/action-download-artifact from 11 to 12 (PR #227 by
Expand Down
Loading