From 27eadc7c80180a1aee4c5226af4896b1c08bc8c8 Mon Sep 17 00:00:00 2001 From: Fabio Niephaus Date: Thu, 17 Nov 2022 13:43:07 +0100 Subject: [PATCH] Use v3 of `actions/checkout` and `upload-artifact`. Context: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 35665cb..9848aff 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: graalvm/setup-graalvm@v1 with: @@ -35,7 +35,7 @@ jobs: $bench ./game-of-life patterns/puffer_train.txt 0 10 91 10 91 true true - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: game-of-life-${{ matrix.os }} path: |