-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
actions/checkout v4->v5, actions/setup-python v4->v5
- Loading branch information
1 parent
39cffcd
commit 76c3f4b
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
|
||
steps: | ||
- id: checkout-code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Cache APT Packages | ||
|
@@ -35,7 +35,7 @@ jobs: | |
version: 1.0 | ||
packages: sudo lsb-release wget tzdata libsnappy-dev libpq5 libpq-dev software-properties-common build-essential rsync curl | ||
- id: prepare-python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
@@ -102,14 +102,14 @@ jobs: | |
|
||
steps: | ||
- id: checkout-code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Cache APT Packages | ||
uses: awalsh128/[email protected] | ||
with: | ||
version: 1.0 | ||
packages: sudo lsb-release wget tzdata libsnappy-dev libpq5 libpq-dev software-properties-common build-essential rsync curl git libaio1 libmecab2 psmisc | ||
- id: prepare-python | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: pip | ||
|