Skip to content

Commit f7902e6

Browse files
committed
Update build environment + flows.
1 parent 955fc00 commit f7902e6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
steps:
1414
-
1515
name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
-
1818
name: Install Nix
19-
uses: cachix/install-nix-action@v22
19+
uses: cachix/install-nix-action@v30
2020
with:
21-
nix_path: nixpkgs=channel:nixos-23.05
21+
nix_path: nixpkgs=channel:nixos-24.11
2222
-
2323
name: Cargo cache
24-
uses: actions/cache@v3
24+
uses: actions/cache@v4
2525
with:
2626
path: |
2727
~/.cargo/bin/
@@ -53,12 +53,12 @@ jobs:
5353
steps:
5454
-
5555
name: Checkout
56-
uses: actions/checkout@v2
56+
uses: actions/checkout@v4
5757
-
5858
name: Install Nix
59-
uses: cachix/install-nix-action@v22
59+
uses: cachix/install-nix-action@v30
6060
with:
61-
nix_path: nixpkgs=channel:nixos-23.05
61+
nix_path: nixpkgs=channel:nixos-24.11
6262
-
6363
name: Cargo cache
6464
uses: actions/cache@v3
@@ -75,7 +75,7 @@ jobs:
7575
run: nix-shell --command "make dist-${{ matrix.target }}"
7676
-
7777
name: Configure AWS credentials
78-
uses: aws-actions/configure-aws-credentials@v1
78+
uses: aws-actions/configure-aws-credentials@v4
7979
with:
8080
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
8181
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-24.05.tar.gz") {} }:
1+
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-24.11.tar.gz") {} }:
22

33
pkgs.mkShell {
44
nativeBuildInputs = [

0 commit comments

Comments
 (0)