From ce6d5134275b2fb34f17d1e2851bdb92e1db180d Mon Sep 17 00:00:00 2001 From: Atsushi Togo Date: Mon, 29 May 2023 11:12:32 +0900 Subject: [PATCH] Update github action package versions --- .github/workflows/phono3py-pytest-conda-mkl.yml | 6 +++--- .github/workflows/phono3py-pytest-conda.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/phono3py-pytest-conda-mkl.yml b/.github/workflows/phono3py-pytest-conda-mkl.yml index 06e69ed7..fb72195e 100644 --- a/.github/workflows/phono3py-pytest-conda-mkl.yml +++ b/.github/workflows/phono3py-pytest-conda-mkl.yml @@ -20,7 +20,7 @@ jobs: python-version: ["3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Use conda-incubator/setup-miniconda for precise control of conda infrastructure - uses: conda-incubator/setup-miniconda@v2 with: @@ -31,7 +31,7 @@ jobs: conda install --yes python=${{ matrix.python-version }} #conda install --yes matplotlib-base pyyaml "libblas=*=*openblas" openblas h5py scipy pytest codecov pytest-cov spglib alm cmake c-compiler conda install --yes matplotlib-base pyyaml "libblas=*=*mkl" mkl-include h5py scipy pytest codecov pytest-cov spglib alm cmake c-compiler - - name: Install phonopy + - name: Install phonopy develop branch run: | conda activate test git clone --depth 1 https://github.com/phonopy/phonopy.git @@ -46,6 +46,6 @@ jobs: run: | pytest -v --cov=./ --cov-report=xml test - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: verbose: true diff --git a/.github/workflows/phono3py-pytest-conda.yml b/.github/workflows/phono3py-pytest-conda.yml index c2095fe9..23da25e9 100644 --- a/.github/workflows/phono3py-pytest-conda.yml +++ b/.github/workflows/phono3py-pytest-conda.yml @@ -20,7 +20,7 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Use conda-incubator/setup-miniconda for precise control of conda infrastructure - uses: conda-incubator/setup-miniconda@v2 with: @@ -31,7 +31,7 @@ jobs: conda install --yes python=${{ matrix.python-version }} conda install --yes matplotlib-base pyyaml "libblas=*=*openblas" openblas h5py scipy pytest codecov pytest-cov spglib alm cmake c-compiler #conda install --yes matplotlib-base pyyaml "libblas=*=*mkl" mkl-include h5py scipy pytest codecov pytest-cov spglib alm cmake c-compiler - - name: Install phonopy + - name: Install phonopy develop branch run: | conda activate test git clone --depth 1 https://github.com/phonopy/phonopy.git @@ -46,6 +46,6 @@ jobs: run: | pytest -v --cov=./ --cov-report=xml test - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: verbose: true