From 1e0f71d901bf246ad68f0d7c83ad6f0d719f4692 Mon Sep 17 00:00:00 2001 From: Simon Arlott Date: Sun, 10 May 2026 21:26:22 +0100 Subject: [PATCH 1/3] Run on the latest version of Ubuntu --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ac08ef..f6ca111 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 From 86bb6203a3ebd7d8ef6b5f34acfd505f581967f6 Mon Sep 17 00:00:00 2001 From: Simon Arlott Date: Sun, 10 May 2026 21:28:55 +0100 Subject: [PATCH 2/3] Use the latest version of the checkout and upload-artifact actions --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6ca111..4920aab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Install dependencies run: | @@ -25,7 +25,8 @@ jobs: pdflatex -interaction=nonstopmode -output-directory=output -jobname=hacklab_articles hacklab_articles.tex pdflatex -interaction=nonstopmode -output-directory=output -jobname=hacklab_articles hacklab_articles.tex - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: name: PDF path: output/hacklab_articles.pdf + archive: false From 68294f9ba6c3848873e5c7b01c12ee3c7ec9af56 Mon Sep 17 00:00:00 2001 From: Simon Arlott Date: Sun, 10 May 2026 21:56:08 +0100 Subject: [PATCH 3/3] Rename the main branch --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4920aab..f54b266 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,9 +2,9 @@ name: Build PDF on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] workflow_dispatch: jobs: