Skip to content

Commit

Permalink
Upgrade GitHub Action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed Sep 13, 2023
1 parent 236448a commit d220a04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
lfs: "true"
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
Expand All @@ -24,7 +24,7 @@ jobs:
flake8 ./ms2pip --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Build sdist
run: python -m build --sdist --outdir dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/*.tar.gz
Expand All @@ -36,18 +36,18 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
lfs: "true"
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: "3.11"
- name: Install cibuildwheel
run: python -m pip install cibuildwheel>=2
- name: Build wheels
run: python -m cibuildwheel --output-dir dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist/ms2pip-*.whl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
lfs: "true"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit d220a04

Please sign in to comment.