Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into node20
Browse files Browse the repository at this point in the history
  • Loading branch information
cschramm committed May 2, 2024
2 parents 615ce67 + f50123d commit 30f63d1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
GC_DONT_GC: 1
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v18
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
experimental-features = nix-command flakes recursive-nix
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Nix
uses: cachix/install-nix-action@v18
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
experimental-features = nix-command flakes recursive-nix
Expand All @@ -45,18 +45,18 @@ jobs:
- 1 # shallow clone
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: ${{ matrix.fetch-depth }}

- name: Install Nix
uses: cachix/install-nix-action@v18
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
experimental-features = nix-command flakes recursive-nix
- name: 'Setup Cachix'
uses: cachix/cachix-action@v10
uses: cachix/cachix-action@v14
with:
name: wurzelpfropf
authToken: '${{ secrets.CACHIX_AUTH_TOKEN_PUBLIC }}'
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
run: |
nix profile list --profile '${{ steps.inputs-from-jq.outputs.nix_profile_path }}'
rev=$(nix flake metadata --json "github:yaxitech/ragenix" | jq -r .locks.nodes.nixpkgs.locked.rev)
nix profile list --profile '${{ steps.inputs-from-jq.outputs.nix_profile_path }}' | grep "jq" | grep -q "$rev"
nix profile list --profile '${{ steps.inputs-from-jq.outputs.nix_profile_path }}' --json | jq -r '.elements.jq.url' | grep -q "$rev"
- name: List installed packages
run:
Expand All @@ -122,13 +122,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We need a full checkout for a Git diff
fetch-depth: 0

- name: Install Nix
uses: cachix/install-nix-action@v18
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
experimental-features = nix-command flakes recursive-nix
Expand All @@ -147,13 +147,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We need a full checkout for the tests
fetch-depth: 0

- name: Install Nix
uses: cachix/install-nix-action@v18
uses: cachix/install-nix-action@v26
with:
extra_nix_config: |
experimental-features = nix-command flakes recursive-nix
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
tests:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: yaxitech/nix-install-pkgs-action@v4
with:
packages: "nixpkgs#hello, figlet"
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
tests:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: yaxitech/nix-install-pkgs-action@v4
with:
expr: 'pkgs.python3.withPackages(ps: with ps; [toml pyyaml])'
Expand Down

0 comments on commit 30f63d1

Please sign in to comment.