From 076c407cb280aaad663832d8c241dbcd7cd67b3d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christoph=20Gr=C3=BCninger?= Date: Sun, 19 Apr 2026 10:37:27 +0200 Subject: [PATCH] [ci] Update GitHub Actions to latest versions Fix a couple of deprecation warnings that Node20.js will stop working in June --- .github/workflows/ci-debian.yml | 2 +- .github/workflows/ci-fedora.yml | 2 +- .github/workflows/ci-leap.yml | 2 +- .github/workflows/ci-tumbleweed.yml | 2 +- .github/workflows/ci-ubuntu.yml | 2 +- .github/workflows/codespell.yml | 6 +++--- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-debian.yml b/.github/workflows/ci-debian.yml index e9571e07..025769ad 100644 --- a/.github/workflows/ci-debian.yml +++ b/.github/workflows/ci-debian.yml @@ -16,7 +16,7 @@ jobs: run: apt list --installed | sort - name: Git checkout - uses: actions/checkout@v1 + uses: actions/checkout@v6 - name: Configure run: make -f Makefile.repo diff --git a/.github/workflows/ci-fedora.yml b/.github/workflows/ci-fedora.yml index e0bd34dc..70ae2ed9 100644 --- a/.github/workflows/ci-fedora.yml +++ b/.github/workflows/ci-fedora.yml @@ -16,7 +16,7 @@ jobs: run: rpm -qa | sort - name: Git checkout - uses: actions/checkout@v1 + uses: actions/checkout@v6 - name: Configure run: make -f Makefile.repo diff --git a/.github/workflows/ci-leap.yml b/.github/workflows/ci-leap.yml index e4dac44c..597e0394 100644 --- a/.github/workflows/ci-leap.yml +++ b/.github/workflows/ci-leap.yml @@ -16,7 +16,7 @@ jobs: run: rpm -qa | sort - name: Git checkout - uses: actions/checkout@v1 + uses: actions/checkout@v6 - name: Configure run: make -f Makefile.repo diff --git a/.github/workflows/ci-tumbleweed.yml b/.github/workflows/ci-tumbleweed.yml index c7cc45f1..b03ee0d1 100644 --- a/.github/workflows/ci-tumbleweed.yml +++ b/.github/workflows/ci-tumbleweed.yml @@ -27,7 +27,7 @@ jobs: run: rpm -qa | sort - name: Git checkout - uses: actions/checkout@v1 + uses: actions/checkout@v6 - name: Configure run: | diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml index f92e02e3..bea6a59a 100644 --- a/.github/workflows/ci-ubuntu.yml +++ b/.github/workflows/ci-ubuntu.yml @@ -16,7 +16,7 @@ jobs: run: apt list --installed | sort - name: Git checkout - uses: actions/checkout@v1 + uses: actions/checkout@v6 - name: Configure run: make -f Makefile.repo diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 11de5393..6f62f8de 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Codespell - # third-party so better use commit shasum (here of v2) - uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 + # third-party so better use commit shasum (here of v2.2) + uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 -- 2.47.3