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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Lint (ruff)
run: uvx ruff@0.15.15 check copilot.py test_copilot.py
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Publish asset and update the tap
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Resolve version
id: version
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
echo "copilot.py sha256=${sha}"

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
tag_name: ${{ steps.version.outputs.tag }}
files: copilot.py
Expand All @@ -71,7 +71,7 @@ jobs:
**copilot.py sha256:** `${{ steps.checksum.outputs.sha256 }}`

- name: Check out the Homebrew tap
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: natikgadzhi/homebrew-taps
token: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
name: Bump version and tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: main
fetch-depth: 0
Expand Down
Loading