From ca73b328141fbd68c5861fe59911de3be7ba2e1f Mon Sep 17 00:00:00 2001 From: mertelx Date: Thu, 29 Feb 2024 16:14:10 +0100 Subject: [PATCH] Update action version to run on node 20 (https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/) --- .github/workflows/test_examples.yml | 2 +- .github/workflows/testing_OSX.yml | 4 ++-- .github/workflows/testing_ubuntu20.yml | 4 ++-- .github/workflows/testing_ubuntu22.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test_examples.yml b/.github/workflows/test_examples.yml index ac5621e72..f1edf5776 100644 --- a/.github/workflows/test_examples.yml +++ b/.github/workflows/test_examples.yml @@ -17,7 +17,7 @@ jobs: py: "/usr/bin/python3" #python 3.10 steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Preinstall run: | sudo apt-get update diff --git a/.github/workflows/testing_OSX.yml b/.github/workflows/testing_OSX.yml index 38ca85b47..ffc39046f 100644 --- a/.github/workflows/testing_OSX.yml +++ b/.github/workflows/testing_OSX.yml @@ -16,7 +16,7 @@ jobs: py: "/usr/bin/python3" steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Preinstall run: | brew install hdf5 fftw cfitsio muparser libomp numpy swig @@ -42,7 +42,7 @@ jobs: make test - name: Archive test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "test-report_${{matrix.config.name}}" path: build/Testing/Temporary/LastTest.log diff --git a/.github/workflows/testing_ubuntu20.yml b/.github/workflows/testing_ubuntu20.yml index 83acbf7fc..54e0f834e 100644 --- a/.github/workflows/testing_ubuntu20.yml +++ b/.github/workflows/testing_ubuntu20.yml @@ -17,7 +17,7 @@ jobs: py: "/usr/bin/python3" #python 3.8 steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Preinstall run: | sudo apt-get update @@ -41,7 +41,7 @@ jobs: make test - name: Archive test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "test-report_${{matrix.config.name}}" path: build/Testing/Temporary/LastTest.log \ No newline at end of file diff --git a/.github/workflows/testing_ubuntu22.yml b/.github/workflows/testing_ubuntu22.yml index 7991cf631..775a88d25 100644 --- a/.github/workflows/testing_ubuntu22.yml +++ b/.github/workflows/testing_ubuntu22.yml @@ -17,7 +17,7 @@ jobs: py: "/usr/bin/python3" #python 3.10 steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Preinstall run: | sudo apt-get update @@ -41,7 +41,7 @@ jobs: make test - name: Archive test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "test-report_${{matrix.config.name}}" path: build/Testing/Temporary/LastTest.log