<feed xmlns='http://www.w3.org/2005/Atom'>
<title>gocryptfs/.github/workflows, branch nilopts</title>
<subtitle>Mirror of gocryptfs source code on Github</subtitle>
<id>http://nuetzlich.net/cgit/gocryptfs/atom?h=nilopts</id>
<link rel='self' href='http://nuetzlich.net/cgit/gocryptfs/atom?h=nilopts'/>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/'/>
<updated>2025-12-15T20:16:54+00:00</updated>
<entry>
<title>github ci: drop older Go versions</title>
<updated>2025-12-15T20:16:54+00:00</updated>
<author>
<name>Jakob Unterwurzacher</name>
</author>
<published>2025-12-15T20:14:05+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=ae971661e091071865d3928f8c79b86a9703f914'/>
<id>urn:sha1:ae971661e091071865d3928f8c79b86a9703f914</id>
<content type='text'>
This has become untenable as the golang.org/x
packages started bumping their go.mod go directive
automatically:
https://github.com/golang/go/issues/69095
https://go.googlesource.com/proposal/+/HEAD/design/69095-x-repo-continuous-go.md
</content>
</entry>
<entry>
<title>github ci: document why "mount_max = 10000" is needed</title>
<updated>2025-11-11T20:29:21+00:00</updated>
<author>
<name>Jakob Unterwurzacher</name>
</author>
<published>2025-11-11T20:29:21+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=be34b9822bea4ce3b717c1b9bf5076f1118427ec'/>
<id>urn:sha1:be34b9822bea4ce3b717c1b9bf5076f1118427ec</id>
<content type='text'>
https://github.com/libfuse/libfuse/commit/bf3dd153fbfcd610d799562490f6555b9d708905
</content>
</entry>
<entry>
<title>build(deps): bump actions/upload-artifact from 4 to 5</title>
<updated>2025-11-04T20:38:36+00:00</updated>
<author>
<name>dependabot[bot]</name>
</author>
<published>2025-10-27T12:55:38+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=3bb943c62f8088475fd570cfb39c378190cf2782'/>
<id>urn:sha1:3bb943c62f8088475fd570cfb39c378190cf2782</id>
<content type='text'>
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</content>
</entry>
<entry>
<title>build(deps): bump actions/setup-go from 5 to 6</title>
<updated>2025-09-16T19:12:03+00:00</updated>
<author>
<name>dependabot[bot]</name>
</author>
<published>2025-09-08T11:41:20+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=a9ad30ff70d2ed8e12e9985d7ce48335fa2699ac'/>
<id>urn:sha1:a9ad30ff70d2ed8e12e9985d7ce48335fa2699ac</id>
<content type='text'>
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](https://github.com/actions/setup-go/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</content>
</entry>
<entry>
<title>build(deps): bump actions/checkout from 4 to 5</title>
<updated>2025-09-16T19:11:53+00:00</updated>
<author>
<name>dependabot[bot]</name>
</author>
<published>2025-08-26T00:08:13+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=5c6e284133cb706add0f7ce186955386e33158a7'/>
<id>urn:sha1:5c6e284133cb706add0f7ce186955386e33158a7</id>
<content type='text'>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</content>
</entry>
<entry>
<title>github ci: checkout first to make dependency caching work</title>
<updated>2025-08-03T21:04:25+00:00</updated>
<author>
<name>Jakob Unterwurzacher</name>
</author>
<published>2025-08-03T21:04:25+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=a946f12d04ab7dbc9ba357bf8ea3af5e6d8484d8'/>
<id>urn:sha1:a946f12d04ab7dbc9ba357bf8ea3af5e6d8484d8</id>
<content type='text'>
We used to get this:

	Warning: Restore cache failed: Dependencies file is not found in /home/runner/work/gocryptfs/gocryptfs. Supported file pattern: go.sum

Hopefully make it go away by checking out the code first.

Fixes https://github.com/rfjakob/gocryptfs/issues/946
</content>
</entry>
<entry>
<title>build(deps): bump actions/checkout from 3 to 4</title>
<updated>2025-07-16T16:25:47+00:00</updated>
<author>
<name>dependabot[bot]</name>
</author>
<published>2025-07-16T15:55:42+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=33fa0b50cb8ab48e547c8cadcc025bbd40d9c8c7'/>
<id>urn:sha1:33fa0b50cb8ab48e547c8cadcc025bbd40d9c8c7</id>
<content type='text'>
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</content>
</entry>
<entry>
<title>build(deps): bump actions/setup-go from 3 to 5</title>
<updated>2025-07-16T16:25:37+00:00</updated>
<author>
<name>dependabot[bot]</name>
</author>
<published>2025-07-16T15:55:45+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=2ffbb632a090ae5fcb714dfa6755ecde752b39e1'/>
<id>urn:sha1:2ffbb632a090ae5fcb714dfa6755ecde752b39e1</id>
<content type='text'>
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](https://github.com/actions/setup-go/compare/v3...v5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] &lt;support@github.com&gt;</content>
</entry>
<entry>
<title>github ci: clean up Go versions</title>
<updated>2025-03-11T22:25:32+00:00</updated>
<author>
<name>Jakob Unterwurzacher</name>
</author>
<published>2025-03-11T22:25:32+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=106470d940f7d9fa584463c92f7b2f4f51bce215'/>
<id>urn:sha1:106470d940f7d9fa584463c92f7b2f4f51bce215</id>
<content type='text'>
go-libaegis does not support Go 1.18, Ubuntu 22.04 is old,
drop it.
</content>
</entry>
<entry>
<title>github ci: bump nmount_max and print resulting fuse.conf</title>
<updated>2025-03-11T22:25:04+00:00</updated>
<author>
<name>Jakob Unterwurzacher</name>
</author>
<published>2025-03-11T22:12:22+00:00</published>
<link rel='alternate' type='text/html' href='http://nuetzlich.net/cgit/gocryptfs/commit/?id=1c335c73545fbddd83fc905925e808f01cb851a0'/>
<id>urn:sha1:1c335c73545fbddd83fc905925e808f01cb851a0</id>
<content type='text'>
We have been getting

        /usr/bin/fusermount3: too many FUSE filesystems mounted; mount_max=N can be set in /etc/fuse.conf
        fs.Mount failed: fusermount exited with code 256

every now and then. I wonder why that is.
</content>
</entry>
</feed>
