niv nixpkgs: update 68f19df4 -> 10182eec #11391
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 nix hashes | |
on: | |
push: | |
branches-ignore: | |
- master | |
tags-ignore: | |
- '**' | |
jobs: | |
update-hash: | |
if: github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# This is needed to be able to push and trigger CI with that push | |
token: ${{ secrets.NIV_UPDATER_TOKEN }} | |
- uses: cachix/install-nix-action@V28 | |
with: | |
nix_path: nixpkgs=channel:nixos-22.11 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: ic-hs-test | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Update drun cargo hash | |
run: | | |
cd nix | |
nix shell -f . nix-update -c nix-update --version=skip drun | |
- name: Update ic-wasm cargo hash | |
run: | | |
nix shell -f default.nix nix-update -c nix-update --version=skip ic-wasm | |
- name: Commit changes | |
uses: EndBug/[email protected] | |
with: | |
default_author: github_actions | |
author_name: Nix hash updater | |
github_token: ${{ secrets.NIV_UPDATER_TOKEN }} | |
committer_name: GitHub Actions | |
committer_email: [email protected] | |
message: "Updating nix hashes" |