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 .github/actions/update-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
using: "composite"
steps:
- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
version: "0.5.14"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_lint-gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Lint actions and workflows
uses: bakdata/ci-templates/actions/action-lint@v1.14.0
uses: bakdata/ci-templates/actions/action-lint@1.81.1
with:
action-lint-version: "v1.7.6"
26 changes: 13 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
version: ${{ env.UV_VERSION }}
Expand All @@ -58,10 +58,10 @@ jobs:
name: Format
runs-on: [ubuntu-24.04]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
version: ${{ env.UV_VERSION }}
Expand Down Expand Up @@ -90,12 +90,12 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: true

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
version: ${{ env.UV_VERSION }}
Expand All @@ -108,10 +108,10 @@ jobs:
runs-on: [ubuntu-24.04]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: "3.12"
version: ${{ env.UV_VERSION }}
Expand Down Expand Up @@ -145,10 +145,10 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
version: ${{ env.UV_VERSION }}
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}
needs: [lint, format, test, docs]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Publish docs from main branch
uses: ./.github/actions/update-docs
Expand All @@ -206,14 +206,14 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
needs: [lint, format, test, docs]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}

# Checks to see if any files in the PR match one of the listed file types.
# This will return true if there's a file in docs folder that was added, deleted, or modified in the PR.
- name: Check if files in docs folder have changed
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
id: docs-changes
with:
filters: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
version: "0.5.14"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
create-github-release-push-tag:
uses: bakdata/ci-templates/.github/workflows/python-uv-release.yaml@1.69.1
uses: bakdata/ci-templates/.github/workflows/python-uv-release.yaml@1.81.1
name: Release
with:
release-type: ${{ inputs.release-type }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Update docs
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all tags; Required for doc versioning

Expand Down
Loading