🌐 AI搜索 & 代理 主页
Skip to content

Commit f081ed7

Browse files
Updated github actions (checkout and setup-python)
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent ca2dfd5 commit f081ed7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
deploy:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v5
2323
- name: Set up Python
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: '3.x'
2727
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
TOXENV: py
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v5
2929
- if: ${{ matrix.python-version == '2.7' }}
3030
run: |
3131
sudo apt-get install python-is-python2
3232
curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
3333
python get-pip.py
3434
- if: ${{ matrix.python-version != '2.7' }}
3535
name: ${{ matrix.python-version }} - ${{ matrix.os }}
36-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v6
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
allow-prereleases: true
@@ -54,9 +54,9 @@ jobs:
5454
TOXENV: ${{ matrix.toxenv }}
5555

5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v5
5858
- name: ${{ matrix.toxenv }}
59-
uses: actions/setup-python@v4
59+
uses: actions/setup-python@v6
6060
with:
6161
python-version: "3.x"
6262
- name: Install tox

0 commit comments

Comments
 (0)