Skip to content

Commit

Permalink
Update all actions with latest available versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Aug 30, 2023
1 parent 70129d7 commit 172aeec
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quick_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: install Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.x'
- name: load cached Python installation
id: cache
uses: actions/cache@v3
Expand Down
24 changes: 14 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: load cached Python installation
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: lint-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}
Expand All @@ -44,20 +46,20 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ '3.8', '3.9', '3.x' ]
python-version: [ '3.8', '3.9', '3.10', '3.x' ]
exclude:
- os: macos-latest
python-version: '3.x'
steps:
- name: clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: load cached Python installation
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: test-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}
Expand All @@ -82,12 +84,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: install Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: load cached Python installation
id: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: test-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}
Expand Down

0 comments on commit 172aeec

Please sign in to comment.