From 8b48c707d0e4c6b71fb24ccb3e44c503cb1fd802 Mon Sep 17 00:00:00 2001 From: armfazh Date: Fri, 9 Aug 2024 01:26:46 -0600 Subject: [PATCH] Updating CI versions. --- .github/workflows/oncici.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/oncici.yml b/.github/workflows/oncici.yml index ca3b2bd..c9765b5 100644 --- a/.github/workflows/oncici.yml +++ b/.github/workflows/oncici.yml @@ -10,7 +10,7 @@ jobs: matrix: compiler: [ [gcc,g++], [clang,clang++] ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Building env: CC: ${{ matrix.compiler[0] }} @@ -24,7 +24,7 @@ jobs: run: | cd build bin/bench | tee timings_${{ matrix.compiler[0] }}.txt - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v4 with: name: Timings path: build/timings_${{ matrix.compiler[0] }}.txt @@ -32,7 +32,7 @@ jobs: name: Testing runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Building run: | mkdir build