From 1ec3a2a08e85237f7f5ee76832813258aa75dcba Mon Sep 17 00:00:00 2001 From: Maximilian Kratz Date: Tue, 19 Dec 2023 09:02:07 +0100 Subject: [PATCH] Updates GitHub-based Actions to v4 + updates Ubuntu release to 22.04 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d56199a1..a69e5380 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,10 @@ on: jobs: build: - runs-on: [ubuntu-20.04] + runs-on: [ubuntu-22.04] steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: | sudo apt update @@ -30,7 +30,7 @@ jobs: run: | ant jar - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fastutil.jar path: fastutil-*.jar