Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
fetch-depth: 0

- name: Build wheels
uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
uses: pypa/cibuildwheel@9c00cb4f6b517705a3794b22395aedc36257242c # v3.2.1
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 @@ -44,7 +44,7 @@ jobs:
- 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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Checkout branch
uses: actions/checkout@v5
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].2
with:
environments: default lint
- name: pre-commit
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].2
with:
environments: ${{ matrix.env }}
- name: Run unit tests
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].2
with:
environments: ${{ matrix.env }}
- name: Install msodbcsql17 driver
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_grammar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/[email protected].1
uses: prefix-dev/[email protected].2
with:
environments: grammar
- name: Download ANTLR
Expand Down
Loading