From 5d5b7b194444a301f3866302dd9394211e56a6bb Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 17 Apr 2025 10:46:50 -0800 Subject: [PATCH] Use ubuntu-latest in Docker publish step Seems 20.04 has been removed. --- .github/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 04d0a7bc5..f020ccde3 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -145,7 +145,7 @@ jobs: gh pr create --repo coder/code-server-aur --title "chore: bump version to ${{ env.VERSION }}" --body "PR opened by @$GITHUB_ACTOR" --assignee $GITHUB_ACTOR docker: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout code-server uses: actions/checkout@v4