Compare commits

...

4 commits

Author SHA1 Message Date
Trolli Schmittlauch
af1645519a update build command to syntax changes in Nix 2.4 2021-11-02 07:51:22 +01:00
dependabot[bot]
f30134873f
build(deps): bump cachix/install-nix-action from 13 to 14.1
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 13 to 14.1.
- [Release notes](https://github.com/cachix/install-nix-action/releases)
- [Commits](https://github.com/cachix/install-nix-action/compare/v13...v14.1)

---
updated-dependencies:
- dependency-name: cachix/install-nix-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-11-02 06:27:07 +00:00
Trolli Schmittlauch
c2fb359c29
Merge pull request #5 from schmittlauch/dependabot/github_actions/actions/checkout-2.3.5
build(deps): bump actions/checkout from 2.3.4 to 2.3.5
2021-11-02 07:26:45 +01:00
dependabot[bot]
7ce8dc0d72
build(deps): bump actions/checkout from 2.3.4 to 2.3.5
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.4...v2.3.5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-10-18 17:03:52 +00:00

View file

@ -35,9 +35,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
- name: Install nix
uses: cachix/install-nix-action@v13
uses: cachix/install-nix-action@v14.1
with:
nix_path: "${{ matrix.nixPath }}"
- name: Show nixpkgs version
@ -59,7 +59,7 @@ jobs:
-I $PWD
- name: Build nix packages
# TODO switch to default nixpkgs channel once nix-build-uncached 1.0.0 is in stable
run: nix run -I 'nixpkgs=channel:nixos-unstable' nixpkgs.nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
run: nix --extra-experimental-features 'nix-command flakes' shell -I 'nixpkgs=channel:nixos-unstable' nixpkgs#nix-build-uncached -c nix-build-uncached ci.nix -A cacheOutputs
- name: Trigger NUR update
if: ${{ matrix.nurRepo != '<YOUR_REPO_NAME>' }}
run: curl -XPOST "https://nur-update.herokuapp.com/update?repo=${{ matrix.nurRepo }}"