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: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install cog, requests for testing
run: pip install requests==2.32.5 cogapp==3.6.0

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Generate new sdk
id: generate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Build distribution 📦
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
private-key: ${{ secrets.APP_PRIVATE_KEY }}

- name: Check out HEAD ref
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
Expand All @@ -97,7 +97,7 @@ jobs:
echo "latest_tag=$LATEST_TAG" >> $GITHUB_OUTPUT

- name: Check out previous release
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
path: previous
Expand Down