From cb7db3ffa419b912759196d9a7c566defb11c1ee Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Tue, 30 Jan 2024 12:07:55 +0200 Subject: [PATCH 1/2] Update github action versions --- .github/workflows/ci.yml | 14 +++++++------- HISTORY.rst | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b894cf7..eeb13856 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5.0.0 with: python-version: ${{ matrix.python-version }} @@ -37,7 +37,7 @@ jobs: pipenv - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 @@ -52,7 +52,7 @@ jobs: - name: Load cached CASA Measures Data id: load-cached-casa-measures - uses: actions/cache@v2 + uses: actions/cache@v4 with: key: casa-measures-${{ hashFiles('measures_dir.txt')}} path: | @@ -91,16 +91,16 @@ jobs: github.event.ref == 'refs/heads/master') steps: - - name: Set up Python 3.8 - uses: actions/setup-python@v1 + - name: Set up Python 3.10 + uses: actions/setup-python@v5.0.0 with: - python-version: 3.8 + python-version: 3.10 - name: Install latest setuptools, wheel, pip run: python3 -m pip install -U pip setuptools wheel - name: Checkout source - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 diff --git a/HISTORY.rst b/HISTORY.rst index dde044ba..0463baf6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,7 @@ History X.Y.Z (YYYY-MM-DD) ------------------ +* Update github action versions (:pr:`XXX`) * Deprecate python 3.8 support (:pr:`290`) * Use pre-commit hooks for auto-linting (:pr:`290`) * Deprecate use of @generated_jit. Remove upper bound on numba. (:pr:`289`) From d37cfe303548ce2566783d46a39cbe961beaa186 Mon Sep 17 00:00:00 2001 From: Simon Perkins Date: Tue, 30 Jan 2024 12:09:27 +0200 Subject: [PATCH 2/2] [skip ci] Update HISTORY.rst --- HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0463baf6..5961793d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ History X.Y.Z (YYYY-MM-DD) ------------------ -* Update github action versions (:pr:`XXX`) +* Update github action versions (:pr:`291`) * Deprecate python 3.8 support (:pr:`290`) * Use pre-commit hooks for auto-linting (:pr:`290`) * Deprecate use of @generated_jit. Remove upper bound on numba. (:pr:`289`)