Skip to content

Commit 8f8d563

Browse files
committed
ci: bump versions
1 parent 73816fb commit 8f8d563

File tree

5 files changed

+14
-15
lines changed

5 files changed

+14
-15
lines changed

.github/workflows/conventional-commits.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010
jobs:
1111
verify:
1212
name: Conventional Commits
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
name: Checkout code
1717

1818
- uses: rapyuta-robotics/[email protected]
1919
name: Check if commit messages are compliant
2020
with:
21-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/gh-pages.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66

77
jobs:
88
deploy:
9-
runs-on: ubuntu-22.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Install Pipenv
1515
run: pip3 install pipenv

.github/workflows/pull-request.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ on: [ push ]
33

44
jobs:
55
checks:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [ '3.8', '3.9', '3.10' ]
9+
python-version: [ '3.8.12', '3.9', '3.10' ]
1010
steps:
1111
- name: Checkout Code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818

.github/workflows/pypi.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66

77
jobs:
88
upload:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313

1414
- name: Set up Python
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: "3.10"
1818

.github/workflows/release.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66

77
jobs:
88
release:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Code
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v4
1313
with:
1414
token: ${{ secrets.GH_TOKEN }}
1515

@@ -22,4 +22,3 @@ jobs:
2222
npx semantic-release
2323
env:
2424
GH_TOKEN: ${{ secrets.GH_TOKEN }}
25-

0 commit comments

Comments
 (0)