New Upstream Release - golang-github-muesli-sasquatch

Ready changes

Summary

Merged new upstream version: 0.0~git20220506.a98cc9b (was: 0.0~git20210519.30aff9d).

Resulting package

Built on 2022-11-22T07:27 (took 2m58s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-releases golang-github-muesli-sasquatch-dev

Lintian Result

Diff

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..a8f1d82
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,14 @@
+version: 2
+updates:
+  - package-ecosystem: "gomod"
+    directory: "/"
+    schedule:
+      interval: "daily"
+    labels:
+      - "dependencies"
+  - package-ecosystem: "github-actions"
+    directory: "/"
+    schedule:
+      interval: "daily"
+    labels:
+      - "dependencies"
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index d6374b9..5f42d6d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -11,12 +11,12 @@ jobs:
       GO111MODULE: "on"
     steps:
       - name: Install Go
-        uses: actions/setup-go@v2
+        uses: actions/setup-go@v3
         with:
           go-version: ${{ matrix.go-version }}
 
       - name: Checkout code
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       - name: Download Go modules
         run: go mod download
@@ -44,7 +44,7 @@ jobs:
         if: matrix.os != 'windows-latest'
 
       - name: Install SSH agent
-        uses: webfactory/ssh-agent@v0.4.1
+        uses: webfactory/ssh-agent@v0.5.4
         with:
           ssh-private-key: ${{ secrets.SSH_ED25519_PRIVATE_KEY }}
         if: matrix.os != 'windows-latest'
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 2401f43..f9fb421 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -11,12 +11,12 @@ jobs:
       GO111MODULE: "on"
     steps:
       - name: Install Go
-        uses: actions/setup-go@v2
+        uses: actions/setup-go@v3
         with:
           go-version: ${{ matrix.go-version }}
 
       - name: Checkout code
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       - name: Download Go modules
         run: go mod download
@@ -41,7 +41,7 @@ jobs:
           echo ${{ secrets.SSH_ED25519_PUBLIC_KEY }} > ~/.ssh/id_ed25519.pub
 
       - name: Install SSH agent
-        uses: webfactory/ssh-agent@v0.4.1
+        uses: webfactory/ssh-agent@v0.5.4
         with:
           ssh-private-key: ${{ secrets.SSH_ED25519_PRIVATE_KEY }}
 
diff --git a/debian/changelog b/debian/changelog
index 31b5fb5..2ab8226 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+golang-github-muesli-sasquatch (0.0~git20220506.a98cc9b-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Tue, 22 Nov 2022 07:24:37 -0000
+
 golang-github-muesli-sasquatch (0.0~git20210519.30aff9d-2) unstable; urgency=medium
 
   * Source-only upload for migration to testing
diff --git a/debian/patches/0001-skip-ssh-tests.patch b/debian/patches/0001-skip-ssh-tests.patch
index 1c24547..ac34b36 100644
--- a/debian/patches/0001-skip-ssh-tests.patch
+++ b/debian/patches/0001-skip-ssh-tests.patch
@@ -5,9 +5,11 @@ Forwarded: not-needed
 Last-Update: 2021-12-28
 ---
 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---- a/sasquatch_test.go
-+++ b/sasquatch_test.go
-@@ -9,6 +9,7 @@
+Index: golang-github-muesli-sasquatch.git/sasquatch_test.go
+===================================================================
+--- golang-github-muesli-sasquatch.git.orig/sasquatch_test.go
++++ golang-github-muesli-sasquatch.git/sasquatch_test.go
+@@ -9,6 +9,7 @@ import (
  )
  
  func TestFindSSHKeys(t *testing.T) {
@@ -15,7 +17,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	keys, err := FindSSHKeys()
  	if err != nil {
  		t.Error(err)
-@@ -21,6 +22,7 @@
+@@ -21,6 +22,7 @@ func TestFindSSHKeys(t *testing.T) {
  }
  
  func TestFindSSHAgentSigners(t *testing.T) {
@@ -23,7 +25,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	signers, err := SSHAgentSigners()
  	if err != nil {
  		t.Error(err)
-@@ -39,6 +41,7 @@
+@@ -39,6 +41,7 @@ func TestFindSSHAgentSigners(t *testing.
  }
  
  func TestFindRecipients(t *testing.T) {
@@ -31,7 +33,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	rcp := FindRecipients()
  
  	if len(rcp) == 0 {
-@@ -47,6 +50,7 @@
+@@ -47,6 +50,7 @@ func TestFindRecipients(t *testing.T) {
  }
  
  func TestFindIdentities(t *testing.T) {
@@ -39,7 +41,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	identities := FindIdentities()
  
  	if len(identities) == 0 {
-@@ -55,6 +59,7 @@
+@@ -55,6 +59,7 @@ func TestFindIdentities(t *testing.T) {
  }
  
  func TestIdentityFromFile(t *testing.T) {
@@ -47,7 +49,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	key, _ := homedir.Expand("~/.ssh/id_rsa")
  	i, err := ParseIdentitiesFile(key)
  	if err != nil {
-@@ -81,6 +86,7 @@
+@@ -81,6 +86,7 @@ func TestRecipientFromPubKey(t *testing.
  }
  
  func TestSSHRSAEncrypt(t *testing.T) {
@@ -55,7 +57,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	buf := bytes.NewBuffer(nil)
  
  	key, _ := homedir.Expand("~/.ssh/id_rsa.pub")
-@@ -124,6 +130,7 @@
+@@ -124,6 +130,7 @@ func TestSSHRSAEncrypt(t *testing.T) {
  }
  
  func TestSSHEd25519Encrypt(t *testing.T) {
@@ -63,7 +65,7 @@ This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
  	buf := bytes.NewBuffer(nil)
  
  	key, _ := homedir.Expand("~/.ssh/id_ed25519.pub")
-@@ -167,6 +174,7 @@
+@@ -167,6 +174,7 @@ func TestSSHEd25519Encrypt(t *testing.T)
  }
  
  func TestChallengeEncrypt(t *testing.T) {
diff --git a/go.mod b/go.mod
index c1d2392..91a8599 100644
--- a/go.mod
+++ b/go.mod
@@ -4,5 +4,6 @@ go 1.14
 
 require (
 	github.com/mitchellh/go-homedir v1.1.0
-	golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de
+	golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
+	golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
 )
diff --git a/go.sum b/go.sum
index 43904af..e84093e 100644
--- a/go.sum
+++ b/go.sum
@@ -1,10 +1,14 @@
 github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
 github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
-golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
-golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de h1:ikNHVSjEfnvz6sxdSPCaPt572qowuyMDMJLLm3Db3ig=
-golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
-golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI=
-golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
+golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f h1:OeJjE6G4dgCY4PIXvIRQbE8+RX+uXZyGhUy/ksMGJoc=
+golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
+golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
+golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 h1:nonptSpoQ4vQjyraW20DXPAglgQfVnM9ZC6MmNLMR60=
+golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 h1:v+OssWQX+hTHEmOBgwxdZxK4zHq3yOs8F9J7mk0PY8E=
+golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
+golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
+golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=

Debdiff

File lists identical (after any substitutions)

No differences were encountered in the control files

More details

Full run details