8000 gha: bump the all-github-actions group with 4 updates (#208) · python/python-docs-pt-br@e88d559 · GitHub
[go: up one dir, main page]

Skip to content

Commit e88d559

Browse files
gha: bump the all-github-actions group with 4 updates (#208)
Bumps the all-github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [sphinx-doc/github-problem-matcher](https://github.com/sphinx-doc/github-problem-matcher), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4.1.2 to 4.1.6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.1.2...v4.1.6) Updates `sphinx-doc/github-problem-matcher` from 1.0 to 1.1 - [Release notes](https://github.com/sphinx-doc/github-problem-matcher/releases) - [Commits](sphinx-doc/github-problem-matcher@v1.0...v1.1) Updates `actions/upload-artifact` from 4.3.1 to 4.3.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.3.1...v4.3.3) Updates `actions/download-artifact` from 4.1.4 to 4.1.7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4.1.4...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-github-actions - dependency-name: sphinx-doc/github-problem-matcher dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 522be07 commit e88d559

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

.github/workflows/check.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: Build translated docs
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4.1.2
41+
- uses: actions/checkout@v4.1.6
4242
with:
4343
fetch-depth: 5
4444

@@ -52,7 +52,7 @@ jobs:
5252
run: git pull --rebase
5353

5454
- name: Add problem matcher
55-
uses: sphinx-doc/github-problem-matcher@v1.0
55+
uses: sphinx-doc/github-problem-matcher@v1.1
5656

5757
- name: Build docs
5858
continue-on-error: true
@@ -62,14 +62,14 @@ jobs:
6262
6363
- name: Upload artifact - docs
6464
if: steps.build.outcome == 'success'
65-
uses: actions/upload-artifact@v4.3.1
65+
uses: actions/upload-artifact@v4.3.3
6666
with:
6767
name: docs
6868
path: cpython/Doc/build/html
6969

7070
- name: Upload artifact - log files
7171
if: always()
72-
uses: actions/upload-artifact@v4.3.1
72+
uses: actions/upload-artifact@v4.3.3
7373
with:
7474
name: build-logs
7575
path: logs/*
@@ -99,7 +99,7 @@ jobs:
9999
name: Lint translations
100100
runs-on: ubuntu-latest
101101
steps:
102-
- uses: actions/checkout@v4.1.2
102+
- uses: actions/checkout@v4.1.6
103103
with:
104104
fetch-depth: 5
105105

@@ -122,7 +122,7 @@ jobs:
122122
make lint
123123
124124
- name: Upload artifact - log files
125-
uses: actions/upload-artifact@v4.3.1
125+
uses: actions/upload-artifact@v4.3.3
126126
with:
127127
name: lint-logs
128128
path: logs/*
@@ -152,7 +152,7 @@ jobs:
152152
name: Spell check translations
153153
runs-on: ubuntu-latest
154154
steps:
155-
- uses: actions/checkout@v4.1.2
155+
- uses: actions/checkout@v4.1.6
156156
with:
157157
fetch-depth: 5
158158

@@ -174,7 +174,7 @@ jobs:
174174
run: make spell
175175

176176
- name: Upload artifact - log files
177-
uses: actions/upload-artifact@v4.3.1
177+
uses: actions/upload-artifact@v4.3.3
178178
with:
179179
name: pospell-logs
180180
path: logs/*
@@ -186,7 +186,7 @@ jobs:
186186
runs-on: ubuntu-latest
187187
steps:
188188
- name: Check out ${{ github.repository }}
189-
uses: actions/checkout@v4.1.2
189+
uses: actions/checkout@v4.1.6
190190
with:
191191
fetch-depth: 5
192192

@@ -211,7 +211,7 @@ jobs:
211211
powrap compendium.po
212212
213213
- name: Upload artifact
214-
uses: actions/upload-artifact@v4.3.1
214+
uses: actions/upload-artifact@v4.3.3
215215
with:
216216
name: compendium
217217
path: compendium.po
@@ -221,7 +221,7 @@ jobs:
221221
runs-on: ubuntu-latest
222222
steps:
223223
- name: Check out ${{ github.repository }}
224-
uses: actions/checkout@v4.1.2
224+
uses: actions/checkout@v4.1.6
225225

226226
- name: Set up Python 3
227227
uses: actions/setup-python@v5.1.0

.github/workflows/update.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Check out ${{ github.repository }}
38-
uses: actions/checkout@v4.1.2
38+
uses: actions/checkout@v4.1.6
3939

4040
- name: Get branch name on push or schedule
4141
if: |
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV
5353

5454
- name: Check out CPython
55-
uses: actions/checkout@v4.1.2
55+
uses: actions/checkout@v4.1.6
5656
with:
5757
repository: python/cpython
5858
ref: ${{ env.BRANCH }}
@@ -80,7 +80,7 @@ jobs:
8080
TX_TOKEN: ${{ secrets.TX_TOKEN }}
8181

8282
- name: Upload artifact - po files
83-
uses: actions/upload-artifact@v4.3.1
83+
uses: actions/upload-artifact@v4.3.3
8484
with:
8585
name: translations
8686
path: |
@@ -90,7 +90,7 @@ jobs:
9090
9191
- name: Upload artifact - log files
9292
if: always()
93-
uses: actions/upload-artifact@v4.3.1
93+
uses: actions/upload-artifact@v4.3.3
9494
with:
9595
name: pull-logs
9696
path: |
@@ -107,10 +107,10 @@ jobs:
107107
contents: write
108108
steps:
109109
- name: Check out ${{ github.repository }}
110-
uses: actions/checkout@v4.1.2
110+
uses: actions/checkout@v4.1.6
111111

112112
- name: Download PO files
113-
uses: actions/download-artifact@v4.1.4
113+
uses: actions/download-artifact@v4.1.7
114114
with:
115115
name: translations
116116

@@ -166,13 +166,13 @@ jobs:
166166
run: echo "CURRENT_BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV
167167

168168
- name: Check out source branch (${{ env.CURRENT_BRANCH }})
169-
uses: actions/checkout@v4.1.2
169+
uses: actions/checkout@v4.1.6
170170
with:
171171
path: ${{ env.CURRENT_BRANCH }}
172172
persist-credentials: false
173173

174174
- name: Check out target branch (${{ matrix.branch }})
175-
uses: actions/checkout@v4.1.2
175+
uses: actions/checkout@v4.1.6
176176
with:
177177
ref: ${{ matrix.branch }}
178178
path: ${{ matrix.branch }}

0 commit comments

Comments
 (0)
0