Skip to content

Commit c4a2ffc

Browse files
authored
Merge branch 'master' into rdp/2026-01-23
2 parents 316277a + c759a6c commit c4a2ffc

File tree

12 files changed

+314
-21
lines changed

12 files changed

+314
-21
lines changed

.github/workflows/deploy.yml

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

4040
steps:
4141
- name: Get source code
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 0
4545

@@ -55,7 +55,7 @@ jobs:
5555
python -m pip install --upgrade -r requirements.txt
5656
5757
- name: Cache build dependencies (external assets downloaded)
58-
uses: actions/cache@v4
58+
uses: actions/cache@v5
5959
with:
6060
key: ${{ github.ref }}
6161
path: .cache

.github/workflows/issue_comment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Set up Python
2121
uses: actions/setup-python@v6
@@ -37,7 +37,7 @@ jobs:
3737
JSON_STRING: ${{ steps.issue-parser.outputs.jsonString }}
3838

3939
- name: Save form output as artifact
40-
uses: actions/upload-artifact@v5
40+
uses: actions/upload-artifact@v6
4141
with:
4242
name: input_form.json
4343
path: "rdp*.json"
@@ -56,7 +56,7 @@ jobs:
5656
run: python scripts/issue_comment_templater_rdp.py
5757

5858
- name: Save comment artifact
59-
uses: actions/upload-artifact@v5
59+
uses: actions/upload-artifact@v6
6060
with:
6161
name: output_comment.md
6262
overwrite: true

.github/workflows/links_checker.yml

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

2323
steps:
2424
- name: Get source code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Set up Python
2828
uses: actions/setup-python@v6
@@ -53,7 +53,7 @@ jobs:
5353
> linkchecker_report.html
5454
5555
- name: Save report output as artifact
56-
uses: actions/upload-artifact@v5
56+
uses: actions/upload-artifact@v6
5757
if: ${{ always() }}
5858
continue-on-error: true
5959
with:

.github/workflows/manual_new_rdp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
echo "DATE_FR_LONG=$(date -d ${{ github.event.inputs.date }} '+%-d %B %Y')" >> $GITHUB_ENV
4040
4141
- name: Get source code
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Create a new GeoRDP
4545
shell: bash

.github/workflows/pr_checker_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Get source code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Set up Python
3737
uses: actions/setup-python@v6
@@ -46,7 +46,7 @@ jobs:
4646
python -m pip install -U -r requirements.txt
4747
4848
- name: Cache build dependencies (external assets downloaded)
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
key: ${{ github.ref }}
5252
path: .cache
@@ -103,7 +103,7 @@ jobs:
103103
tar --zstd -cf artifact.tar.zst pr.env ${{ env.BUILD_DIR }}
104104
105105
- name: Save build website as artifact
106-
uses: actions/upload-artifact@v5
106+
uses: actions/upload-artifact@v6
107107
with:
108108
name: pr-build-website
109109
path: artifact.tar.zst

.github/workflows/pr_cleaner_post_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Get source code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Prepare redirection
2626
run: |

.github/workflows/pr_header_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: "Fetch source code"
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: "Set up Python"
1919
uses: actions/setup-python@v6

.github/workflows/pr_linter_markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Récupère le code source"
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
# Filter results by added/modified lines.
2727
- name: "Vérifie la syntaxe des lignes ajoutées ou modifiées"

.github/workflows/pr_preview_netlify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# =============================== #
2626

2727
- name: Download artifact from build workflow
28-
uses: dawidd6/action-download-artifact@v11
28+
uses: dawidd6/action-download-artifact@v12
2929
with:
3030
github_token: ${{ secrets.GITHUB_TOKEN }}
3131
name: pr-build-website

0 commit comments

Comments
 (0)