From 2a2043e0052b10585787617647b3bb3fac9bd978 Mon Sep 17 00:00:00 2001 From: Liviu-Mihail Concioiu Date: Mon, 29 Jun 2026 10:49:36 +0200 Subject: [PATCH 1/4] Update actions/checkout to v7 Signed-off-by: Liviu-Mihail Concioiu --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd064624b..127b04329 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: outputs: langs: ${{ steps.language-list.outputs.langs }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - id: language-list @@ -38,7 +38,7 @@ jobs: matrix: include: ${{ fromJSON(needs.generate-language-list.outputs.langs) }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - name: Install Sphinx-doc From 026558645c9151ab9d5a1f653ae6d74787d877e7 Mon Sep 17 00:00:00 2001 From: Liviu-Mihail Concioiu Date: Mon, 29 Jun 2026 10:52:59 +0200 Subject: [PATCH 2/4] Update actions/cache to v6 Signed-off-by: Liviu-Mihail Concioiu --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 127b04329..0541ffcff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,7 +59,7 @@ jobs: working-directory: phpmyadmin run: git restore-mtime - name: Cache output for "${{ matrix.languageCode }}" - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: output/${{ matrix.languageCode }} key: docs-output-${{ matrix.languageCode }} From 06aeeeb1c52944a300bf732242059a7368d2f140 Mon Sep 17 00:00:00 2001 From: Liviu-Mihail Concioiu Date: Mon, 29 Jun 2026 10:54:25 +0200 Subject: [PATCH 3/4] Use apt-get instead of apt to fix warning Signed-off-by: Liviu-Mihail Concioiu --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0541ffcff..af9b6fa7d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,8 +43,8 @@ jobs: submodules: true - name: Install Sphinx-doc run: | - sudo apt update - sudo apt install -y sphinx-doc python3-sphinx + sudo apt-get update + sudo apt-get install -y sphinx-doc python3-sphinx - name: Install gettext run: sudo apt-get install -y gettext - name: Install git-restore-mtime From 3034c68ec03dbf0b2d10ce6e02663f3f9989328f Mon Sep 17 00:00:00 2001 From: Liviu-Mihail Concioiu Date: Mon, 29 Jun 2026 10:55:09 +0200 Subject: [PATCH 4/4] Install python3-sphinx-rtd-theme to fix warning Signed-off-by: Liviu-Mihail Concioiu --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af9b6fa7d..cf421f215 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: - name: Install Sphinx-doc run: | sudo apt-get update - sudo apt-get install -y sphinx-doc python3-sphinx + sudo apt-get install -y sphinx-doc python3-sphinx python3-sphinx-rtd-theme - name: Install gettext run: sudo apt-get install -y gettext - name: Install git-restore-mtime