Skip to content

Commit f1e2395

Browse files
authored
Merge branch 'master' into age-plugin
2 parents 2d57b9d + 94d8af6 commit f1e2395

File tree

12 files changed

+64
-50
lines changed

12 files changed

+64
-50
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
tests:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: cachix/install-nix-action@v31
1515
- name: Add keys group (needed for go tests)
1616
run: sudo groupadd keys

.github/workflows/update-vendor-hash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
app-id: ${{ vars.CI_APP_ID }}
1212
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
fetch-depth: 0

.github/workflows/upgrade-flakes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
createPullRequest:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Install Nix
1414
uses: cachix/install-nix-action@v31
1515
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ The actual sops configuration is in the `sops` namespace in your home.nix (or in
851851
The secrets are decrypted in a systemd user service called `sops-nix`, so other services needing secrets must order after it:
852852
```nix
853853
{
854-
systemd.user.services.mbsync.unitConfig.After = [ "sops-nix.service" ];
854+
systemd.user.services.mbsync.Unit.After = [ "sops-nix.service" ];
855855
}
856856
```
857857

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
pkgs ? import <nixpkgs> { },
3-
vendorHash ? "sha256-b+yUkMeIKiozlrANOwaMY2QDWo0cZYpD9SXZuSgYUQs=",
3+
vendorHash ? "sha256-diS0zLssN1jaPRDleaIsUe6oGJE0KgvF1Jl81pnzhhU=",
44
}:
55
let
66
sops-install-secrets = pkgs.callPackage ./pkgs/sops-install-secrets {

dev/private.narHash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sha256-LWGPhPU6l7VM8rvPbl0g8h+jPO90rkiqYL1bFLUuro8=
1+
sha256-wyQ2oeHNYAjJm329fi01r7XBoHxs7V4MYhCuzNqvFsY=

dev/private/flake.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
sops-init-gpg-key
5858
sops-pgp-hook
5959
sops-import-keys-hook
60-
sops-ssh-to-age
6160
;
6261
# backward compatibility
6362
inherit (prev) ssh-to-pgp;

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ require (
1111
github.com/joho/godotenv v1.5.1
1212
github.com/moby/sys/mountinfo v0.7.2
1313
github.com/mozilla-services/yaml v0.0.0-20201007153854-c369669a6625
14-
golang.org/x/crypto v0.42.0
15-
golang.org/x/sys v0.36.0
14+
golang.org/x/crypto v0.46.0
15+
golang.org/x/sys v0.39.0
1616
gopkg.in/ini.v1 v1.67.0
1717
)
1818

@@ -116,11 +116,11 @@ require (
116116
go.opentelemetry.io/otel/sdk/metric v1.37.0 // indirect
117117
go.opentelemetry.io/otel/trace v1.37.0 // indirect
118118
go.yaml.in/yaml/v3 v3.0.4 // indirect
119-
golang.org/x/net v0.44.0 // indirect
119+
golang.org/x/net v0.47.0 // indirect
120120
golang.org/x/oauth2 v0.31.0 // indirect
121-
golang.org/x/sync v0.17.0 // indirect
122-
golang.org/x/term v0.35.0 // indirect
123-
golang.org/x/text v0.29.0 // indirect
121+
golang.org/x/sync v0.19.0 // indirect
122+
golang.org/x/term v0.38.0 // indirect
123+
golang.org/x/text v0.32.0 // indirect
124124
golang.org/x/time v0.13.0 // indirect
125125
google.golang.org/api v0.250.0 // indirect
126126
google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirect

0 commit comments

Comments
 (0)