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

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

- name: Build wheels
uses: pypa/cibuildwheel@faf86a6ed7efa889faf6996aa23820831055001a # v2.23.3
uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
env:
CIBW_SKIP: pp*

Expand All @@ -37,7 +37,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -60,10 +60,10 @@ jobs:
contents: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4.3.0
- uses: actions/download-artifact@v5.0.0
with:
pattern: pytsql-*
merge-multiple: true
path: dist

- uses: pypa/gh-action-pypi-publish@v1.12.4
- uses: pypa/gh-action-pypi-publish@v1.13.0
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@v4
uses: actions/checkout@v5
- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.8.8
uses: prefix-dev/setup-pixi@v0.9.1
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@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.8.8
uses: prefix-dev/setup-pixi@v0.9.1
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@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.8.8
uses: prefix-dev/setup-pixi@v0.9.1
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@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up pixi
uses: prefix-dev/setup-pixi@v0.8.8
uses: prefix-dev/setup-pixi@v0.9.1
with:
environments: grammar
- name: Download ANTLR
Expand Down
Loading