{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":149188211,"defaultBranch":"master","name":"solbuild","ownerLogin":"getsolus","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-09-17T21:08:00.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/43145361?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1718714970.0","currentOid":""},"activityList":{"items":[{"before":null,"after":"cd93718b3252ca60af3503ed90a6a0d39765273f","ref":"refs/heads/call-eopkg.py3-for-pspec.xml-builds","pushedAt":"2024-06-18T12:49:30.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ermo","name":"Rune Morling","path":"/ermo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118045?s=80&v=4"},"commit":{"message":"builder: Use eopkg.py3 to build pspec.xml recipes\n\nThis ensures that solbuild will work with the phase1+2 changes to eopkg\nand pisi packages [here](https://github.com/getsolus/packages/pull/2964)\n\nIn addition, make a cosmetic tweak to eopkg install commands (which will\neffectively be using eopkg.bin when the PR above lands) so the -y flag\nis set before the -c flag when installing components.\n\nSigned-off-by: Rune Morling ","shortMessageHtmlLink":"builder: Use eopkg.py3 to build pspec.xml recipes"}},{"before":"1b87395e4c4d660c843576b8cf72aff767eaa7ca","after":"5e9c6d1e58e9f3c5ca3a012b3318ea9d04e31e8c","ref":"refs/heads/master","pushedAt":"2024-06-16T12:58:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"},"commit":{"message":"Update version to 1.6.3","shortMessageHtmlLink":"Update version to 1.6.3"}},{"before":"a6c2b8046c0d3fe72add0a63e6e94a36bfd0c16c","after":null,"ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-16T12:58:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"}},{"before":"c5da1d1c138da724b7fbb5ad0f0916387c19343b","after":"1b87395e4c4d660c843576b8cf72aff767eaa7ca","ref":"refs/heads/master","pushedAt":"2024-06-16T12:57:59.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"},"commit":{"message":"Merge pull request #104 from getsolus/remove-submodules-command\n\ngit: Fix submodule fetch, rewrite logic","shortMessageHtmlLink":"Merge pull request #104 from getsolus/remove-submodules-command"}},{"before":"d5ec53d574401c09fe5e17b513234c2f6478e04a","after":"a6c2b8046c0d3fe72add0a63e6e94a36bfd0c16c","ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-14T20:07:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix submodule fetch, rewrite logic\n\nThe logic for this was quite broken and had several failure cases due to that. This commit re-writes that to be saner.\n\nChanges:\n- Individual exec commands are all split out to separate functions so that they can be more easily composed. No function does more than a single command\n- Control flow now happens entirely in the Fetch() function\n- Before there were several failure states around submodules due to the `git switch` command happening immediately after the `git fetch` if the repo was already cloned. This is fixed by moving to a unified control flow.\n- `Fetch()` will now run either the initial clone OR update refs before moving onto further steps\n- `git clone` no longer attempts to initialize submodules. Several features from `git submodules` aren't yet implemented by `git clone` and so submodule initialization is moved entirely into a `git submodule` command\n- `git switch` now happens after the clone/fetch but before `git submodule`\n- `git switch` now no longer runs with any submodule-related flags. Like `git clone` the features we need are just not implemented yet and as far as I can tell there are subtle behavioral differences that were causing issues.\n- `git submodule` will now use `--filter=blob:none` to specify that submodule checkouts should themselves be blobless when possible. As far as I can tell this works correctly with `--recursive` and recursive submodules.\n- Because we are now checking out submodules with blobless clones when possible the `fixPermissions()` logic has been updated to account for promisor files that could be in submodule `.git` directories","shortMessageHtmlLink":"git: Fix submodule fetch, rewrite logic"}},{"before":"80093d48967692b715459719802a5adf81475cf2","after":"d5ec53d574401c09fe5e17b513234c2f6478e04a","ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-14T00:35:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix submodule fetch, rewrite logic\n\nThe logic for this was quite broken and had several failure cases due to that. This commit re-writes that to be saner.\n\nChanges:\n- Individual exec commands are all split out to separate functions so that they can be more easily composed. No function does more than a single command\n- Control flow now happens entirely in the Fetch() function\n- Before there were several failure states around submodules due to the `git switch` command happening immediately after the `git fetch` if the repo was already cloned. This is fixed by moving to a unified control flow.\n- `Fetch()` will now run either the initial clone OR update refs before moving onto further steps\n- `git clone` no longer attempts to initialize submodules. Several features from `git submodules` aren't yet implemented by `git clone` and so submodule initialization is moved entirely into a `git submodule` command\n- `git switch` now happens after the clone/fetch but before `git submodule`\n- `git switch` now no longer runs with any submodule-related flags. Like `git clone` the features we need are just not implemented yet and as far as I can tell there are subtle behavioral differences that were causing issues.\n- `git submodule` will now use `--filter=blob:none` to specify that submodule checkouts should themselves be blobless when possible. As far as I can tell this works correctly with `--recursive` and recursive submodules.\n- Because we are now checking out submodules with blobless clones when possible the `fixPermissions()` logic has been updated to account for promisor files that could be in submodule `.git` directories","shortMessageHtmlLink":"git: Fix submodule fetch, rewrite logic"}},{"before":"b49b13eb6e5403669d4b92d0da0dbbaded644f9a","after":"80093d48967692b715459719802a5adf81475cf2","ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-14T00:27:27.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix submodule fetch, rewrite logic\n\nThe logic for this was quite broken and had several failure cases due to that. This commit re-writes that to be saner.\n\nChanges:\n- Individual exec commands are all split out to separate functions so that they can be more easily composed. No function does more than a single command\n- Control flow now happens entirely in the Fetch() function\n- Before there were several failure states around submodules due to the `git switch` command happening immediately after the `git fetch` if the repo was already cloned. This is fixed by moving to a unified control flow.\n- `Fetch()` will now run either the initial clone OR update refs before moving onto further steps\n- `git clone` no longer attempts to initialize submodules. Several features from `git submodules` aren't yet implemented by `git clone` and so submodule initialization is moved entirely into a `git submodule` command\n- `git switch` now happens after the clone/fetch but before `git submodule`\n- `git switch` now no longer runs with any submodule-related flags. Like `git clone` the features we need are just not implemented yet and as far as I can tell there are subtle behavioral differences that were causing issues.\n- `git submodule` will now use `--filter=blob:none` to specify that submodule checkouts should themselves be blobless when possible. As far as I can tell this works correctly with `--recursive` and recursive submodules.\n- Because we are now checking out submodules with blobless clones when possible the `fixPermissions()` logic has been updated to account for promisor files that could be in submodule `.git` directories","shortMessageHtmlLink":"git: Fix submodule fetch, rewrite logic"}},{"before":"ef6aa3e73731b5a63d85da736f63369ec0134243","after":"b49b13eb6e5403669d4b92d0da0dbbaded644f9a","ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-14T00:24:42.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix submodule fetch, rewrite logic\n\nThe logic for this was quite broken and had several failure cases due to that. This commit re-writes that to be saner.\n\nChanges:\n- Individual exec commands are all split out to separate functions so that they can be more easily composed. No function does more than a single command\n- Control flow now happens entirely in the Fetch() function\n- Before there were several failure states around submodules due to the `git switch` command happening immediately after the `git fetch` if the repo was already cloned. This is fixed by moving to a unified control flow.\n- `Fetch()` will now run either the initial clone OR update refs before moving onto further steps\n- `git clone` no longer attempts to initialize submodules. Several features from `git submodules` aren't yet implemented by `git clone` and so submodule initialization is moved entirely into a `git submodule` command\n- `git switch` now happens after the clone/fetch but before `git submodule`\n- `git switch` now no longer runs with any submodule-related flags. Like `git clone` the features we need are just not implemented yet and as far as I can tell there are subtle behavioral differences that were causing issues.\n- `git submodule` will now use `--filter=blob:none` to specify that submodule checkouts should themselves be blobless when possible. As far as I can tell this works correctly with `--recursive` and recursive submodules.\n- Because we are now checking out submodules with blobless clones when possible the `fixPermissions()` logic has been updated to account for promisor files that could be in submodule `.git` directories","shortMessageHtmlLink":"git: Fix submodule fetch, rewrite logic"}},{"before":"fc5f752dbd91bd3efe5edbbf2b08f54554cc10be","after":"ef6aa3e73731b5a63d85da736f63369ec0134243","ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-14T00:10:31.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix submodule fetch, rewrite logic\n\nThe logic for this was quite broken and had several failure cases due to that. This commit re-writes that to be saner.\n\nChanges:\n- Individual exec commands are all split out to separate functions so that they can be more easily composed. No function does more than a single command\n- Control flow now happens entirely in the Fetch() function\n- Before there were several failure states around submodules due to the `git switch` command happening immediately after the `git fetch` if the repo was already cloned. The submodule logic needed to happen in the middle.\n- `git clone` no longer checks out without a working tree. This was failure prone due to subtle differences in how `git switch` and `git submodules` handled initialization logic. It now checks out the default branch and then switches to the correct ref. This should still be fairly efficient since it will still use blobless clones.\n- `git submodule` will now use `--checkout` in order to avoid a failure case where `git switch` wants to initialize a submodule when the submodule has `update: no` set in the `.gitmodules` file. `git switch` should handle this correctly but we can make it work for now with `--checkout` to force the submodule to be checked out (even if we probably don't need that)\n- `git submodule` will now use `--filter=blob:none` to specify that submodule checkouts should themselves be blobless when possible. As far as I can tell this works correctly with `--recursive` and recursive submodules.\n- `git clone` now also uses `--recurse-submodules` and `--also-filter-submodules`. This moves some of the initialization to the clone even if this is redundant with `git submodule`\n- Because we are now checking out submodules with blobless clones when possible the `fixPermissions()` logic has been updated to account for promisor files that could be in submodule `.git` directories","shortMessageHtmlLink":"git: Fix submodule fetch, rewrite logic"}},{"before":null,"after":"fc5f752dbd91bd3efe5edbbf2b08f54554cc10be","ref":"refs/heads/remove-submodules-command","pushedAt":"2024-06-13T22:33:55.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Don't call git submodule\n\nThe reset function already calls `git switch --recurse-submodules` which handles setting up and checking out submodules. Calling `git submodule update` is redundant and leads to issues.\n\nSigned-off-by: Reilly Brogan ","shortMessageHtmlLink":"git: Don't call git submodule"}},{"before":"fc5f752dbd91bd3efe5edbbf2b08f54554cc10be","after":"c5da1d1c138da724b7fbb5ad0f0916387c19343b","ref":"refs/heads/master","pushedAt":"2024-06-13T22:33:26.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"Merge pull request #101 from getsolus/renovate/golangci-golangci-lint-action-6.x\n\nchore(deps): update golangci/golangci-lint-action action to v6","shortMessageHtmlLink":"Merge pull request #101 from getsolus/renovate/golangci-golangci-lint…"}},{"before":"c5da1d1c138da724b7fbb5ad0f0916387c19343b","after":"fc5f752dbd91bd3efe5edbbf2b08f54554cc10be","ref":"refs/heads/master","pushedAt":"2024-06-13T22:32:02.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Don't call git submodule\n\nThe reset function already calls `git switch --recurse-submodules` which handles setting up and checking out submodules. Calling `git submodule update` is redundant and leads to issues.\n\nSigned-off-by: Reilly Brogan ","shortMessageHtmlLink":"git: Don't call git submodule"}},{"before":null,"after":"9812abe07188d481e2b4ff5240f2123f3dd0e11e","ref":"refs/heads/rootlesskit","pushedAt":"2024-05-28T22:14:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"joebonrichie","name":"Joey Riches","path":"/joebonrichie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5338090?s=80&v=4"},"commit":{"message":"Initial support for rootlesskit to replace fakeroot\n\nLess overhead and less stupid fucking bugs.","shortMessageHtmlLink":"Initial support for rootlesskit to replace fakeroot"}},{"before":"60011fd2044fb2a913959c77a50406580807b2bb","after":null,"ref":"refs/heads/renovate/golangci-golangci-lint-action-6.x","pushedAt":"2024-05-23T14:58:20.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"ea8adfbd98e31421cc0a3a600c5553a2fa2d2443","after":null,"ref":"refs/heads/renovate/github.com-burntsushi-toml-1.x","pushedAt":"2024-05-23T14:58:19.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"249e427c4ff1876603eea1b36994ac860ca53e7f","after":"c5da1d1c138da724b7fbb5ad0f0916387c19343b","ref":"refs/heads/master","pushedAt":"2024-05-23T14:58:13.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"},"commit":{"message":"Merge pull request #101 from getsolus/renovate/golangci-golangci-lint-action-6.x\n\nchore(deps): update golangci/golangci-lint-action action to v6","shortMessageHtmlLink":"Merge pull request #101 from getsolus/renovate/golangci-golangci-lint…"}},{"before":"b9ae7928be59b25a4e00fd24adcbc72676b3a69c","after":"249e427c4ff1876603eea1b36994ac860ca53e7f","ref":"refs/heads/master","pushedAt":"2024-05-23T14:57:58.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"},"commit":{"message":"Merge pull request #102 from getsolus/renovate/github.com-burntsushi-toml-1.x\n\nfix(deps): update module github.com/burntsushi/toml to v1.4.0","shortMessageHtmlLink":"Merge pull request #102 from getsolus/renovate/github.com-burntsushi-…"}},{"before":null,"after":"ea8adfbd98e31421cc0a3a600c5553a2fa2d2443","ref":"refs/heads/renovate/github.com-burntsushi-toml-1.x","pushedAt":"2024-05-23T14:46:47.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"fix(deps): update module github.com/burntsushi/toml to v1.4.0","shortMessageHtmlLink":"fix(deps): update module github.com/burntsushi/toml to v1.4.0"}},{"before":null,"after":"60011fd2044fb2a913959c77a50406580807b2bb","ref":"refs/heads/renovate/golangci-golangci-lint-action-6.x","pushedAt":"2024-05-07T01:46:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"chore(deps): update golangci/golangci-lint-action action to v6","shortMessageHtmlLink":"chore(deps): update golangci/golangci-lint-action action to v6"}},{"before":"33a60b78dd59e7fa6069d393d85f06b8152048f1","after":"2193cf312a1fb26697df4fa80aa3c43c99c0871d","ref":"refs/heads/faster-walk","pushedAt":"2024-05-04T20:51:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"joebonrichie","name":"Joey Riches","path":"/joebonrichie","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5338090?s=80&v=4"},"commit":{"message":"cli/delete-cache: Switch to fastwalk","shortMessageHtmlLink":"cli/delete-cache: Switch to fastwalk"}},{"before":"8102e0df6ae0a039c10d6d66dec414bbf93672e4","after":null,"ref":"refs/heads/renovate/golangci-golangci-lint-action-5.x","pushedAt":"2024-05-04T16:39:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"86a63f4db6e1048468ec43df72caa393ee753444","after":"b9ae7928be59b25a4e00fd24adcbc72676b3a69c","ref":"refs/heads/master","pushedAt":"2024-05-04T16:38:43.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"},"commit":{"message":"Merge pull request #99 from getsolus/renovate/golangci-golangci-lint-action-5.x\n\nchore(deps): update golangci/golangci-lint-action action to v5","shortMessageHtmlLink":"Merge pull request #99 from getsolus/renovate/golangci-golangci-lint-…"}},{"before":"baeadd536ad461ff1f7470ec31f7d10a0ab1872f","after":"86a63f4db6e1048468ec43df72caa393ee753444","ref":"refs/heads/master","pushedAt":"2024-05-04T16:36:32.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"silkeh","name":"Silke Hofstra","path":"/silkeh","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5798032?s=80&v=4"},"commit":{"message":"Merge pull request #100 from getsolus/git-fetch\n\ngit: Fix fetch","shortMessageHtmlLink":"Merge pull request #100 from getsolus/git-fetch"}},{"before":"e2752fe79d2608bb2d1fcd8d81a2ade890a45d58","after":"8ae765e537edbedd47017f1691424686f82eaaa1","ref":"refs/heads/git-fetch","pushedAt":"2024-05-03T20:58:46.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix fetch\n\nSigned-off-by: Reilly Brogan ","shortMessageHtmlLink":"git: Fix fetch"}},{"before":null,"after":"e2752fe79d2608bb2d1fcd8d81a2ade890a45d58","ref":"refs/heads/git-fetch","pushedAt":"2024-05-03T20:08:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ReillyBrogan","name":"Reilly Brogan","path":"/ReillyBrogan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4309817?s=80&v=4"},"commit":{"message":"git: Fix fetch\n\nSigned-off-by: Reilly Brogan ","shortMessageHtmlLink":"git: Fix fetch"}},{"before":null,"after":"8102e0df6ae0a039c10d6d66dec414bbf93672e4","ref":"refs/heads/renovate/golangci-golangci-lint-action-5.x","pushedAt":"2024-04-25T05:07:21.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"chore(deps): update golangci/golangci-lint-action action to v5","shortMessageHtmlLink":"chore(deps): update golangci/golangci-lint-action action to v5"}},{"before":"0a8e4fbda6a4a0fc10926704c8f719600cf67cae","after":null,"ref":"refs/heads/renovate/go-1.x","pushedAt":"2024-04-21T07:10:10.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"2c10a2a2ddd527be2137f8f5bce9820d1a9d6980","after":"0a8e4fbda6a4a0fc10926704c8f719600cf67cae","ref":"refs/heads/renovate/go-1.x","pushedAt":"2024-04-03T16:43:48.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"chore(deps): update dependency go to v1.22.2","shortMessageHtmlLink":"chore(deps): update dependency go to v1.22.2"}},{"before":"efcff7b54b6cc9f506eda64fab835a7fab2bc53f","after":null,"ref":"refs/heads/sccache-workaround","pushedAt":"2024-04-01T22:16:12.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"EbonJaeger","name":"Evan Maddock","path":"/EbonJaeger","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/5157277?s=80&v=4"}},{"before":"4d9d8e2bdc4fe0c743a9dd175180e8d0ec792492","after":"baeadd536ad461ff1f7470ec31f7d10a0ab1872f","ref":"refs/heads/master","pushedAt":"2024-04-01T22:04:29.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"GZGavinZhao","name":"Gavin Zhao","path":"/GZGavinZhao","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/74938940?s=80&v=4"},"commit":{"message":"Merge pull request #93 from getsolus/sccache-workaround\n\nStart sccache server when ccache is enabled","shortMessageHtmlLink":"Merge pull request #93 from getsolus/sccache-workaround"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEaHTo4gA","startCursor":null,"endCursor":null}},"title":"Activity · getsolus/solbuild"}