Skip to content

Commit 28d7cb3

Browse files
committed
Update gh actions
1 parent b6c2887 commit 28d7cb3

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Python SDK Publish
22

33
on:
44
push:
5-
branches: [ master ]
6-
tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
5+
branches: [master]
6+
tags: ["v[0-9]+.[0-9]+.[0-9]+"]
77

88
workflow_dispatch:
99

@@ -13,11 +13,11 @@ jobs:
1313
if: startsWith(github.ref, 'refs/tags')
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Python
18-
uses: actions/setup-python@v5
18+
uses: actions/setup-python@v6
1919
with:
20-
python-version: '3.x'
20+
python-version: "3.x"
2121

2222
- name: Install dependencies
2323
run: |

.github/workflows/python-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
os: macos-13
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252

5353
- name: Run tests in Docker for legacy Python
5454
if: matrix.os == 'ubuntu-latest' && contains(fromJSON('["3.5","3.6","3.7"]'), matrix.python-version)
@@ -63,7 +63,7 @@ jobs:
6363
6464
- name: Set up Python ${{ matrix.python-version }}
6565
if: ${{ !(matrix.os == 'ubuntu-latest' && contains(fromJSON('["3.5","3.6","3.7"]'), matrix.python-version)) }}
66-
uses: actions/setup-python@v5
66+
uses: actions/setup-python@v6
6767
with:
6868
python-version: ${{ matrix.python-version }}
6969
env:
@@ -91,10 +91,10 @@ jobs:
9191
needs: [test]
9292
runs-on: ubuntu-latest
9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v5
9595

9696
- name: Set up Python
97-
uses: actions/setup-python@v5
97+
uses: actions/setup-python@v6
9898
with:
9999
python-version: "3.11"
100100

@@ -113,4 +113,4 @@ jobs:
113113
run: pytest --cov=configcatclient configcatclienttests
114114

115115
- name: Upload coverage report
116-
uses: codecov/codecov-action@v3
116+
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)