Skip to content

Commit 5924de4

Browse files
Merge pull request #378 from tpvasconcelos/copilot/rebase-prs-368-369-370-371-373
2 parents 3dbae30 + 176fc73 commit 5924de4

4 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/check-release-notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686

8787
- name: Resolve comment
8888
if: ${{ env.MISSING_CHANGELOG_ENTRY == '0' && steps.fc.outputs.comment-id != '' }}
89-
uses: actions/github-script@v8
89+
uses: actions/github-script@v9
9090
with:
9191
script: |
9292
query = `mutation minimizeComment {
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: Unresolve comment
106106
if: ${{ env.MISSING_CHANGELOG_ENTRY == '1' && steps.fc.outputs.comment-id != '' }}
107-
uses: actions/github-script@v8
107+
uses: actions/github-script@v9
108108
with:
109109
script: |
110110
query = `mutation unminimizeComment {

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
# Upload coverage reports to Codecov
105105

106106
- name: Upload coverage to codecov
107-
uses: codecov/codecov-action@v5
107+
uses: codecov/codecov-action@v6
108108
env:
109109
OS: "${{ matrix.os }}"
110110
PYTHON: "${{ matrix.python-version }}"

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
requirements: tox
4444
- name: Build source (sdist) and binary (wheel) distributions
4545
run: tox -e build-dists
46-
- uses: actions/upload-artifact@v6
46+
- uses: actions/upload-artifact@v7
4747
with:
4848
name: python-package-distributions
4949
path: dist/
@@ -61,7 +61,7 @@ jobs:
6161
permissions:
6262
id-token: write # IMPORTANT: mandatory for trusted publishing
6363
steps:
64-
- uses: actions/download-artifact@v7
64+
- uses: actions/download-artifact@v8
6565
with:
6666
name: python-package-distributions
6767
path: dist/
@@ -84,7 +84,7 @@ jobs:
8484
permissions:
8585
id-token: write # IMPORTANT: mandatory for trusted publishing
8686
steps:
87-
- uses: actions/download-artifact@v7
87+
- uses: actions/download-artifact@v8
8888
with:
8989
name: python-package-distributions
9090
path: dist/
@@ -119,12 +119,12 @@ jobs:
119119

120120
# Sign the package distributions with Sigstore
121121
# https://github.com/marketplace/actions/gh-action-sigstore-python
122-
- uses: actions/download-artifact@v7
122+
- uses: actions/download-artifact@v8
123123
with:
124124
name: python-package-distributions
125125
path: dist/
126126
- name: Sign the dists with Sigstore
127-
uses: sigstore/gh-action-sigstore-python@v3.2.0
127+
uses: sigstore/gh-action-sigstore-python@v3.3.0
128128
with:
129129
inputs: >-
130130
./dist/*.tar.gz

docs/reference/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Unreleased changes
77

88
### CI/CD
99

10+
- Bump actions/download-artifact from 7 to 8 ({gh-pr}`368`)
11+
- Bump actions/upload-artifact from 6 to 7 ({gh-pr}`369`)
12+
- Bump sigstore/gh-action-sigstore-python from 3.2.0 to 3.3.0 ({gh-pr}`370`)
13+
- Bump codecov/codecov-action from 5 to 6 ({gh-pr}`371`)
14+
- Bump actions/github-script from 8 to 9 ({gh-pr}`373`)
1015
- pre-commit autoupdate ({gh-pr}`374`)
1116

1217
---

0 commit comments

Comments
 (0)