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
12 changes: 6 additions & 6 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
os: [ ubuntu-24.04, windows-2022, macos-13, macos-latest ]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Build wheels
uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
uses: pypa/cibuildwheel@63fd63b352a9a8bdcc24791c9dbee952ee9a8abc # v3.3.0
env:
CIBW_SKIP: pp*

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pytsql-wheel-${{ matrix.os }}
path: ./wheelhouse/*.whl
Expand All @@ -37,14 +37,14 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pytsql-sdist
path: dist/*.tar.gz
Expand All @@ -60,7 +60,7 @@ jobs:
contents: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v5.0.0
- uses: actions/download-artifact@v6.0.0
with:
pattern: pytsql-*
merge-multiple: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].3
with:
environments: default lint
- name: pre-commit
Expand All @@ -37,11 +37,11 @@ jobs:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
steps:
- name: Checkout branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].3
with:
environments: ${{ matrix.env }}
- name: Run unit tests
Expand Down Expand Up @@ -79,11 +79,11 @@ jobs:
- 1433:1433
steps:
- name: Checkout branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].3
with:
environments: ${{ matrix.env }}
- name: Install msodbcsql17 driver
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_grammar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].3
with:
environments: grammar
- name: Download ANTLR
Expand Down
Loading