Skip to content

Commit 6dde8c2

Browse files
committed
Merge branch 'main' of github.com:block/goose into spence/nav
* 'main' of github.com:block/goose: Create default gooseignore file when missing (#6498) fix slash and @ keyboard navigation popover background color (#6550) fix[format/openai]: return error on empty msg. (#6511) Fix: ElevenLabs API Key Not Persisting (#6557) Logging uplift for model training purposes (command injection model) [Small change] (#6330) fix(goose): only send agent-session-id when a session exists (#6657) BERT-based command injection detection in tool calls (#6599) chore: [CONTRIBUTING.md] add Hermit to instructions (#6518) fix: update Gemini context limits (#6536) Document r slash command (#6724) Upgrade GitHub Actions to latest versions (#6700) fix: Manual compaction does not update context window. (#6682) Removed the Acceptable Usage Policy (#6204) Document spellcheck toggle (#6721) fix: docs workflow cleanup and prevent cancellations (#6713) Docs: file bug directly (#6718)
2 parents 8088e52 + a4959fe commit 6dde8c2

87 files changed

Lines changed: 1872 additions & 768 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ jobs:
8080

8181
- name: Cache Cargo artifacts (Linux/macOS)
8282
if: matrix.use-cross
83-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
83+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
8484
with:
8585
key: ${{ matrix.architecture }}-${{ matrix.target-suffix }}
8686

8787
- name: Cache Cargo artifacts (Windows)
8888
if: matrix.use-docker
89-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
89+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
9090
with:
9191
key: ${{ matrix.architecture }}-${{ matrix.target-suffix }}
9292

.github/workflows/bundle-desktop-intel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
npm version ${{ inputs.version }} --no-git-tag-version --allow-same-version
6565
6666
- name: Cache Rust dependencies
67-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
67+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
6868
with:
6969
key: intel
7070

@@ -139,7 +139,7 @@ jobs:
139139

140140
- name: Configure AWS credentials
141141
if: ${{ inputs.signing }}
142-
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4
142+
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
143143
with:
144144
role-to-assume: "${{ secrets.OSX_CODESIGN_ROLE }}"
145145
aws-region: us-west-2

.github/workflows/bundle-desktop-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
run: source ./bin/activate-hermit && cargo install cross --git https://github.com/cross-rs/cross
9696

9797
- name: Cache Rust dependencies
98-
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2
98+
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
9999
with:
100100
key: linux
101101

.github/workflows/bundle-desktop-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Configure AWS credentials
5151
if: inputs.signing && inputs.signing == true
52-
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # ratchet:aws-actions/configure-aws-credentials@v4
52+
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
5353
with:
5454
role-to-assume: ${{ github.ref == 'refs/heads/main' && secrets.WINDOW_SIGNING_ROLE || secrets.WINDOW_SIGNING_ROLE_TAG }}
5555
aws-region: us-west-2

.github/workflows/bundle-desktop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169

170170
- name: Configure AWS credentials
171171
if: ${{ inputs.signing }}
172-
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4
172+
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
173173
with:
174174
role-to-assume: "${{ secrets.OSX_CODESIGN_ROLE }}"
175175
aws-region: us-west-2

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109

110110
# Create/update the canary release
111111
- name: Release canary
112-
uses: ncipollo/release-action@440c8c1cb0ed28b9f43e4d1d670870f059653174 # pin@v1
112+
uses: ncipollo/release-action@b7eabc95ff50cbeeedec83973935c8f306dfcd0b # v1.20.0
113113
with:
114114
tag: canary
115115
name: Canary

.github/workflows/create-release-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fetch-depth: 0 # to generate complete release log
4545

4646
- uses: cashapp/activate-hermit@e49f5cb4dd64ff0b0b659d1d8df499595451155a # v1
47-
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6
47+
- uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
4848

4949
- name: Validate input and set old version
5050
run: |

.github/workflows/deploy-docs-and-extensions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Deploy to /gh-pages
7676
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
77-
uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # pin@v3
77+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
7878
with:
7979
github_token: ${{ secrets.GITHUB_TOKEN }}
8080
publish_dir: documentation/build

.github/workflows/docs-update-recipe-ref.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
if: |
192192
steps.extract.outputs.has_changes == 'true' &&
193193
(github.event.inputs.dry_run != 'true' || github.event_name == 'release')
194-
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6
194+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
195195
with:
196196
branch: docs/auto-recipe-reference-${{ steps.versions.outputs.new_version }}
197197
delete-branch: true

.github/workflows/goose-issue-solver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
220220
- name: Create Pull Request
221221
if: steps.goose.outputs.has_changes == 'true'
222-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # pin@v7.0.8
222+
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
223223
with:
224224
token: ${{ secrets.GITHUB_TOKEN }}
225225
commit-message: "fix: ${{ steps.issue.outputs.title }}"

0 commit comments

Comments
 (0)