Skip to content
Merged
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: 3 additions & 1 deletion .github/actions/setup-nix/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ runs:
using: 'composite'
steps:
- name: Install Nix
uses: nixbuild/nix-quick-install-action@2c9db80fb984ceb1bcaa77cdda3fdf8cfba92035 # v34
uses: cachix/install-nix-action@4e002c8ec80594ecd40e759629461e26c8abed15 # v31.9.0
with:
github_access_token: ${{ github.token }}
Copy link

Copilot AI Jan 16, 2026

Choose a reason for hiding this comment

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

The action expects inputs.github_token (an input parameter passed to this composite action), but the code uses github.token which is only available in workflow context, not in composite actions. This should be changed to accept a token input parameter and pass it through, or the line should use a different approach to access the token if composite actions support it in this version.

Copilot uses AI. Check for mistakes.

- name: Install tools from nixpkgs
shell: bash
Expand Down
Loading