Skip to content

Commit 583691b

Browse files
committed
ci: Fix Node.js 20 deprecation warnings
- actions/checkout v4 -> v5 - Replace kenji-miyake/setup-git-cliff with direct curl install
1 parent 9b50aa1 commit 583691b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/release-packages.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
tag: ${{ steps.tag.outputs.tag }}
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020

@@ -23,7 +23,9 @@ jobs:
2323
run: echo "tag=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
2424

2525
- name: Install git-cliff
26-
uses: kenji-miyake/setup-git-cliff@v2
26+
run: |
27+
curl -sL https://github.com/orhun/git-cliff/releases/latest/download/git-cliff-x86_64-unknown-linux-gnu.tar.gz \
28+
| tar -xz -C /usr/local/bin git-cliff
2729
2830
- name: Generate changelog
2931
run: |
@@ -43,7 +45,7 @@ jobs:
4345
runs-on: ubuntu-latest
4446
container: fedora:43
4547
steps:
46-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4749

4850
- name: Install dependencies
4951
run: dnf install -y rpm-build make gcc python3 curl git
@@ -64,7 +66,7 @@ jobs:
6466
needs: create-release
6567
runs-on: ubuntu-latest
6668
steps:
67-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
6870

6971
- name: Install dependencies
7072
run: sudo apt-get update && sudo apt-get install -y dpkg-dev make gcc python3 curl

0 commit comments

Comments
 (0)