From 8b51fdc6b5d16242ae69a09b103f44c8125e16de Mon Sep 17 00:00:00 2001 From: Ethan <39577870+ethanndickson@users.noreply.github.com> Date: Mon, 16 Dec 2024 21:23:11 +1100 Subject: [PATCH] ci: pin weekly-docs runner ubuntu version to 22.04 (#15873) The action is currently failing due to the runner using `ubuntu-latest` See [the ubuntu blog](https://ubuntu.com/blog/whats-new-in-security-for-ubuntu-24-04-lts#:~:text=22.04%20LTS.-,Unprivileged%20user%20namespace%20restrictions,-Unprivileged%20user%20namespaces) for more. --- .github/workflows/weekly-docs.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/weekly-docs.yaml b/.github/workflows/weekly-docs.yaml index a333a70396..679679f9e3 100644 --- a/.github/workflows/weekly-docs.yaml +++ b/.github/workflows/weekly-docs.yaml @@ -15,7 +15,8 @@ permissions: jobs: check-docs: - runs-on: ubuntu-latest + # later versions of Ubuntu have disabled unprivileged user namespaces, which are required by the action + runs-on: ubuntu-22.04 permissions: pull-requests: write # required to post PR review comments by the action steps: