From cad6a3e154dc8f9432bcead7cb435cd65c9bcb9b Mon Sep 17 00:00:00 2001 From: Mike Smith Date: Mon, 24 Jun 2024 10:47:16 +0200 Subject: [PATCH] Update actions workflow to newer runners --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3100db5..ab77140 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,8 +17,8 @@ jobs: matrix: config: - { os: windows-2022, bioc-version: 'devel'} - - { os: macOS-11, bioc-version: 'devel'} - - { os: ubuntu-20.04, bioc-version: 'devel'} + - { os: macOS-latest, bioc-version: 'devel'} + - { os: ubuntu-22.04, bioc-version: 'devel'} env: R_REMOTES_NO_ERRORS_FROM_WARNINGS: true @@ -31,7 +31,7 @@ jobs: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev - name: Install Mac system libraries - if: ${{ matrix.config.os == 'macOS-11' }} + if: ${{ matrix.config.os == 'macOS-latest' }} run: | brew install openssl @@ -68,7 +68,7 @@ jobs: arguments: '--no-check-bioc-help' - name: Test coverage - if: ${{ matrix.config.os == 'ubuntu-20.04' }} + if: ${{ matrix.config.os == 'ubuntu-22.04' }} run: | install.packages('covr') covr::codecov()