[24.11] Update nixpkgs (2024-12-16) #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update-nixpkgs-cleanup | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
update-nixpkgs-on-merge: | |
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'nixpkgs-auto-update/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: flyingcircusio/fc-nixos-release-tools | |
path: 'release-tools' | |
- uses: cachix/install-nix-action@v21 | |
with: | |
# Nix 2.24 breaks flake update | |
install_url: https://releases.nixos.org/nix/nix-2.18.9/install | |
- uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ vars.NIXPKGS_UPDATE_APP_ID }} | |
private-key: ${{ secrets.NIXPKGS_UPDATE_APP_PRIVATE_KEY }} | |
owner: ${{ github.repository_owner }} | |
- run: | | |
echo "::add-mask::${{steps.app-token.outputs.token}}" | |
- name: Get GitHub App User ID | |
id: get-user-id | |
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT" | |
env: | |
GH_TOKEN: ${{ steps.app-token.outputs.token }} | |
- run: | | |
git config --global user.name '${{ steps.app-token.outputs.app-slug }}[bot]' | |
git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>' | |
- name: build release tooling | |
run: | | |
nix build ./release-tools# | |
- run: | | |
./result/bin/update-nixpkgs cleanup \ | |
--merged-pr-id ${{ github.event.number }} \ | |
--nixpkgs-dir nixpkgs \ | |
--nixpkgs-origin-url https://x-access-token:${{steps.app-token.outputs.token}}@github.com/flyingcircusio/nixpkgs.git | |
env: | |
GH_TOKEN: ${{ steps.app-token.outputs.token }} |