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: 2 additions & 0 deletions .github/workflows/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ jobs:
if: ${{ inputs.pull-dvc-datasets }}
run: |
pipx install 'dvc[s3]==3.67.0'
# sqltrie 0.11.2 uses a private API removed in pygtrie 2.6.
pipx runpip dvc install 'pygtrie<2.6'
- name: Set-up git credentials for dvc
if: ${{ inputs.pull-dvc-datasets }}
env:
Expand Down
26 changes: 7 additions & 19 deletions .github/workflows/graphify.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,16 @@
# Copyright 2026 Zaphiro Technologies

# Copyright 2024 Zaphiro Technologies
#

# Licensed under the Apache License, Version 2.0 (the "License")

# you may not use this file except in compliance with the License

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

#

# <http://www.apache.org/licenses/LICENSE-2.0>

# http://www.apache.org/licenses/LICENSE-2.0
#

# Unless required by applicable law or agreed to in writing, software

# distributed under the License is distributed on an "AS IS" BASIS

# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied

# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and

# limitations under the License
# limitations under the License.

name: Update Graphify Code Graph

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ jobs:
if: ${{ inputs.pull-dvc-datasets }}
run: |
pipx install 'dvc[s3]==3.67.0'
# sqltrie 0.11.2 uses a private API removed in pygtrie 2.6.
pipx runpip dvc install 'pygtrie<2.6'
- name: Set-up git credentials for dvc
if: ${{ inputs.pull-dvc-datasets }}
env:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ jobs:
if: ${{ inputs.pull-dvc-datasets }}
run: |
pipx install 'dvc[s3]==3.67.0'
# sqltrie 0.11.2 uses a private API removed in pygtrie 2.6.
pipx runpip dvc install 'pygtrie<2.6'
- name: Set-up credentials
if: ${{ inputs.pull-dvc-datasets }}
env:
Expand Down
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GitHub Workflows Release Notes

## 0.0.3-dev - 2026-08-31
## 0.0.3-dev - 2026-09-02

### Features

Expand Down Expand Up @@ -93,6 +93,7 @@

### Continuous Integration

- fix(ci): constrain pygtrie for DVC (PR #337 by @tejo)
- Add 3-day Dependabot cooldown (PR #294 by @chicco785)
- Separate issue management from project management (PR #236 by @chicco785)
- new-release workflow: delegate to makefile the update of project files (PR
Expand Down
Loading