Skip to content

Commit

Permalink
CI: Fix actions to use the current versions (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
kojiishi authored Apr 7, 2024
1 parent 172e6ac commit f4a078f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down

0 comments on commit f4a078f

Please sign in to comment.