Skip to content

Commit 4b51c30

Browse files
authored
Merge branch 'main' into release/v0.6.2
2 parents be16710 + 00fe9ab commit 4b51c30

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 2
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: "3.10"
2222

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v4
3434

3535
- name: Set up Python ${{ matrix.python }}
36-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v5
3737
with:
3838
python-version: ${{ matrix.python }}
3939

@@ -78,7 +78,7 @@ jobs:
7878
print("::set-output name=result::{}".format(result))
7979
8080
- name: Restore pre-commit cache
81-
uses: actions/cache@v3
81+
uses: actions/cache@v4
8282
if: matrix.session == 'pre-commit'
8383
with:
8484
path: ~/.cache/pre-commit
@@ -92,14 +92,14 @@ jobs:
9292
9393
- name: Upload coverage data
9494
if: always() && matrix.session == 'tests'
95-
uses: "actions/upload-artifact@v3"
95+
uses: "actions/upload-artifact@v4"
9696
with:
9797
name: coverage-data
9898
path: ".coverage.*"
9999

100100
- name: Upload documentation
101101
if: matrix.session == 'docs-build'
102-
uses: actions/upload-artifact@v3
102+
uses: actions/upload-artifact@v4
103103
with:
104104
name: docs
105105
path: docs/_build
@@ -114,7 +114,7 @@ jobs:
114114
uses: actions/checkout@v4
115115

116116
- name: Set up Python
117-
uses: actions/setup-python@v4
117+
uses: actions/setup-python@v5
118118
with:
119119
python-version: "3.10"
120120

@@ -135,7 +135,7 @@ jobs:
135135
nox --version
136136
137137
- name: Download coverage data
138-
uses: actions/download-artifact@v3
138+
uses: actions/download-artifact@v4
139139
with:
140140
name: coverage-data
141141

0 commit comments

Comments
 (0)