Skip to content

Commit

Permalink
feat(deps): bump websockets from 13.1 to 14.2 (#261)
Browse files Browse the repository at this point in the history
* chore(deps): bump websockets from 13.1 to 14.2

Bumps [websockets](https://github.com/python-websockets/websockets) from 13.1 to 14.2.
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@13.1...14.2)

---
updated-dependencies:
- dependency-name: websockets
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: update connection open check

* chore(ci): submit to coveralls when parallel tests complete

* chore(ci): fix formatting of ci yaml

* chore(ci): fix caching not finding poetry

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Smith <[email protected]>
  • Loading branch information
dependabot[bot] and silentworks authored Jan 29, 2025
1 parent b35bbb6 commit 7e9429f
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 99 deletions.
34 changes: 26 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ jobs:
- name: Clone Repository
uses: actions/checkout@v4

- name: Set up Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: latest

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'

- name: Set up Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: latest

- name: Install Supabase CLI
uses: supabase/setup-cli@v1
Expand All @@ -42,6 +44,20 @@ jobs:
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true

finish_tests:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
carryforward: "run-3.9,run-3.10,run-3.11,run-3.12,run-3.13"

release-please:
needs: test
Expand Down Expand Up @@ -69,21 +85,23 @@ jobs:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
contents: write # needed for github actions bot to write to repo
steps:
- name: Set up Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: 1.8.4

- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'poetry'

- name: Clone Repository
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0

- name: Set up Poetry
uses: abatilo/actions-poetry@v4
with:
poetry-version: 1.8.4

- name: Install dependencies
run: poetry install
Expand Down
Loading

0 comments on commit 7e9429f

Please sign in to comment.