Skip to content

Commit fd000ab

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 fd000ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/upload-docx.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
make singlehtml
2929
3030
- name: save singlehtml-en
31-
uses: actions/upload-artifact@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
name: singlehtml-en
3434
path: output/singlehtml/en/alternate_build_master.html
@@ -37,13 +37,13 @@ jobs:
3737
run: make singlehtml-ru
3838

3939
- name: save singlehtml-ru
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: singlehtml-ru
4343
path: output/singlehtml/ru/alternate_build_master.html
4444

4545
- name: save pandoc filters from the repo
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: pandoc
4949
path: pandoc/filter-espd.py
@@ -60,7 +60,7 @@ jobs:
6060
S3_UPLOAD_PATH: ${{secrets.S3_DOCX_PATH}}
6161
steps:
6262
- name: download artifacts
63-
uses: actions/download-artifact@v3
63+
uses: actions/download-artifact@v4
6464

6565
- name: generate docx-en
6666
run: |

0 commit comments

Comments
 (0)