Skip to content

Commit 649efda

Browse files
gha: bump the github-actions group with 2 updates (#281)
Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 68ed283 commit 649efda

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ jobs:
9999

100100
- name: Upload artifact - log files
101101
if: always() && steps.build.outcome == 'failure'
102-
uses: actions/upload-artifact@v4.3.5
102+
uses: actions/upload-artifact@v5
103103
with:
104104
name: logs-${{ inputs.version }}-${{ matrix.format }}
105105
path: logs/*
106106

107107
- name: Upload artifact - docs
108108
if: always() && steps.build.outcome == 'success'
109-
uses: actions/upload-artifact@v4.3.5
109+
uses: actions/upload-artifact@v5
110110
with:
111111
name: python-docs-pt-br-${{ inputs.version }}-${{ matrix.format }}
112112
path: cpython/Doc/build/${{ matrix.format }}
@@ -117,13 +117,13 @@ jobs:
117117
runs-on: ubuntu-latest
118118
needs: [ 'build' ]
119119
steps:
120-
- uses: actions/download-artifact@v5
120+
- uses: actions/download-artifact@v6
121121
with:
122122
name: python-docs-pt-br-${{ inputs.version }}-latex
123123
- run: sudo apt-get update
124124
- run: sudo apt-get install -y latexmk texlive-xetex fonts-freefont-otf xindy texlive-lang-portuguese
125125
- run: make
126-
- uses: actions/upload-artifact@v4
126+
- uses: actions/upload-artifact@v5
127127
if: always()
128128
with:
129129
name: python-docs-pt-br-${{ inputs.version }}-pdf
@@ -182,7 +182,7 @@ jobs:
182182

183183
- name: Upload artifact - log files
184184
if: always() && steps.lint.outcome == 'failure'
185-
uses: actions/upload-artifact@v4
185+
uses: actions/upload-artifact@v5
186186
with:
187187
name: ${{ inputs.version }}-lint-logs
188188
path: logs/*

0 commit comments

Comments
 (0)