Skip to content

Commit

Permalink
Upgrade GitHub Actions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywonchung committed Aug 23, 2024
1 parent 28cd143 commit b05e6c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/publish_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Build source distribution
run: pip install build && python -m build
- name: Publish to PyPI
Expand Down

0 comments on commit b05e6c4

Please sign in to comment.