Skip to content

Commit

Permalink
fix(workflows): change actions version
Browse files Browse the repository at this point in the history
* change actions/checkout@4 to actions/checkout@v4
* change actions/setup-python@4 to actions/setup-python@v5

Signed-off-by: PoAn Yang <[email protected]>
  • Loading branch information
FrankYang0529 authored and Lee-W committed Feb 17, 2024
1 parent 069c2ec commit f7279d7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@4
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python {{ cookiecutter.python_version }}
uses: actions/setup-python@4
uses: actions/setup-python@v5
with:
python-version: "{{ cookiecutter.python_version }}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
publish-pypi-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@4
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@m4
uses: actions/setup-python@v5
with:
python-version: "{{ cookiecutter.python_version }}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: "Bump version and create changelog with commitizen"
steps:
- name: Check out
uses: actions/checkout@4
uses: actions/checkout@v4
with:
token: {% raw %}${{ secrets.PERSONAL_ACCESS_TOKEN }}{% endraw %}
fetch-depth: 0
Expand All @@ -28,13 +28,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@4
uses: actions/checkout@v4
with:
token: {% raw %}${{ secrets.PERSONAL_ACCESS_TOKEN }}{% endraw %}
fetch-depth: 0

- name: Set up Python {{ cookiecutter.python_version }}
uses: actions/setup-python@4
uses: actions/setup-python@v5
with:
python-version: "{{ cookiecutter.python_version }}"

Expand Down

0 comments on commit f7279d7

Please sign in to comment.