Skip to content

Commit f1289fa

Browse files
committed
misc/post-release 24.05: update workflows
1 parent f02d8c9 commit f1289fa

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
options:
99
- 'stable & unstable'
1010
- 'main'
11-
- 'nixos-23.11'
11+
- 'nixos-24.05'
1212
schedule:
1313
- cron: "0 12 * * SAT" # runs weekly on Saturday at noon
1414

@@ -18,12 +18,12 @@ jobs:
1818
matrix:
1919
# This allows to update both stable & unstable branches, but not both when triggered
2020
# manually
21-
branch: ['main', 'nixos-23.11']
21+
branch: ['main', 'nixos-24.05']
2222
selectedBranch: ["${{ inputs.branch }}"]
2323
exclude:
2424
- selectedBranch: main
25-
branch: 'nixos-23.11'
26-
- selectedBranch: 'nixos-23.11'
25+
branch: 'nixos-24.05'
26+
- selectedBranch: 'nixos-24.05'
2727
branch: main
2828
name: Update the flake inputs and generate options
2929
runs-on: ubuntu-latest

build-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ set -ex
55
mkdir -p docs-build
66
nix build github:nix-community/nixvim#docs
77
cp -r result/share/doc/* docs-build
8-
nix build github:nix-community/nixvim/nixos-23.11#docs
8+
nix build github:nix-community/nixvim/nixos-24.05#docs
99
cp -r result/share/doc docs-build/stable

docs/user-guide/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You must use a `nixpkgs` version compatible with the nixvim version you choose.
55
The `master` branch requires to use a _very recent_ version of nixpkgs unstable.
66
In order to guarantee the compatibility between nixvim & nixpkgs it is recommended to always update both at the same time.
77

8-
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-23.05` when using NixOS 23.05.
8+
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-24.05` when using NixOS 24.05.
99

1010
Failure to use the correct branch, or an old revision of nixpkgs will likely result in errors of the form `vimPlugins.<name> attribute not found`.
1111

tests/modules/hm.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ home-manager.lib.homeManagerConfiguration {
1111
home.username = "nixvim";
1212
home.homeDirectory = "/invalid/dir";
1313

14-
home.stateVersion = "23.05";
14+
home.stateVersion = "24.05";
1515

1616
programs.nixvim = {
1717
enable = true;

0 commit comments

Comments
 (0)