Skip to content

Commit 39a0180

Browse files
committed
ci: bumped version of the artifact actions
Since January 30th, 2025, actions/upload-artifact and actions/download-artifact version 3 is deprecated. This patch bumpes its version to v4. See more in [GitHub announcement](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/).
1 parent 4d62db5 commit 39a0180

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/upload-docx.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
branches:
77
- 'latest'
88
- '2.11'
9+
- 'abalaeva/bump-ci-action'
910

1011
jobs:
1112
generate-singlehtml:
@@ -37,13 +38,13 @@ jobs:
3738
run: make singlehtml-ru
3839

3940
- name: save singlehtml-ru
40-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4142
with:
4243
name: singlehtml-ru
4344
path: output/singlehtml/ru/alternate_build_master.html
4445

4546
- name: save pandoc filters from the repo
46-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4748
with:
4849
name: pandoc
4950
path: pandoc/filter-espd.py
@@ -60,7 +61,7 @@ jobs:
6061
S3_UPLOAD_PATH: ${{secrets.S3_DOCX_PATH}}
6162
steps:
6263
- name: download artifacts
63-
uses: actions/download-artifact@v3
64+
uses: actions/download-artifact@v4
6465

6566
- name: generate docx-en
6667
run: |

0 commit comments

Comments
 (0)