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
2 changes: 1 addition & 1 deletion .github/workflows/call-test-containers-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
version: v0.30.0

- name: Install BATS
uses: bats-core/bats-action@3.0.1
uses: bats-core/bats-action@4.0.0
with:
assert-install: false
detik-install: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-test-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
shell: bash

- name: Install BATS
uses: bats-core/bats-action@3.0.1
uses: bats-core/bats-action@4.0.0
with:
assert-install: false
detik-install: false
Comment on lines +77 to 80
Copy link

@cubic-dev-ai cubic-dev-ai bot Feb 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: bats-action v4.0.0 no longer passes a GitHub token automatically, so this step now makes unauthenticated API requests. To preserve the previous authenticated behavior and avoid rate-limit failures, pass the workflow token explicitly.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/call-test-containers.yaml, line 77:

<comment>bats-action v4.0.0 no longer passes a GitHub token automatically, so this step now makes unauthenticated API requests. To preserve the previous authenticated behavior and avoid rate-limit failures, pass the workflow token explicitly.</comment>

<file context>
@@ -74,7 +74,7 @@ jobs:
 
       - name: Install BATS
-        uses: bats-core/bats-action@3.0.1
+        uses: bats-core/bats-action@4.0.0
         with:
           assert-install: false
</file context>
Fix with Cubic

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-test-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Install BATS
uses: bats-core/bats-action@3.0.1
uses: bats-core/bats-action@4.0.0
with:
assert-install: false
detik-install: false
Expand Down
Loading