Skip to content
Open
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 @@ -34,7 +34,7 @@ jobs:
- { name: cli, dir: libs/cli }
- { name: daemon, dir: libs/daemon }
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: "./.github/actions/uv_setup"
with:
python-version: "3.11"
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- { name: daemon, dir: libs/daemon }
python: ["3.12", "3.13"] # 3.11 temporarily disabled
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: "./.github/actions/uv_setup"
with:
python-version: ${{ matrix.python }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
daemon-release: ${{ steps.check-daemon.outputs.is-release }}
pr: ${{ steps.release.outputs.pr }}
steps:
- uses: googleapis/release-please-action@v4
- uses: googleapis/release-please-action@v5
id: release
with:
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
token: ${{ secrets.BOG_PAT }}

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 2

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
token: ${{ secrets.BOG_PAT }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
pkg-name: ${{ steps.meta.outputs.pkg-name }}
version: ${{ steps.meta.outputs.version }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: "./.github/actions/uv_setup"
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
env:
WORKING_DIR: ${{ needs.setup.outputs.working-dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: "./.github/actions/uv_setup"
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
env:
WORKING_DIR: ${{ needs.setup.outputs.working-dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: "./.github/actions/uv_setup"
with:
python-version: ${{ env.PYTHON_VERSION }}
Expand All @@ -161,7 +161,7 @@ jobs:
env:
WORKING_DIR: ${{ needs.setup.outputs.working-dir }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/vscode-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20"

Expand All @@ -62,7 +62,7 @@ jobs:
run: npx @vscode/vsce package

- name: Upload VSIX artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: vscode-extension
path: libs/vscode-extension/*.vsix
Expand All @@ -74,10 +74,10 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: "20"

Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ runs:
- name: Restore agent memory
if: inputs.enable_memory == 'true'
id: restore-memory
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
~/.bog-agents/${{ inputs.agent_name }}/
Expand Down Expand Up @@ -256,7 +256,7 @@ runs:

- name: Save agent memory
if: inputs.enable_memory == 'true' && steps.cache-key.outputs.key != '' && always()
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
~/.bog-agents/${{ inputs.agent_name }}/
Expand Down
Loading