Skip to content

Commit

Permalink
Update github action versions (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins authored Jan 30, 2024
1 parent 4ca5b5e commit af82d12
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -37,7 +37,7 @@ jobs:
pipenv
- name: Checkout source
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

Expand All @@ -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: |
Expand Down Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ History

X.Y.Z (YYYY-MM-DD)
------------------
* 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`)
Expand Down

0 comments on commit af82d12

Please sign in to comment.