Skip to content

Commit 2fc6d9b

Browse files
committed
ci: Update actions to versions using Node 24
This should solve the Node 20 deprecation warnings when running the ci workflows
1 parent 401fe28 commit 2fc6d9b

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Actions Repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
- name: Check spelling
1515
uses: crate-ci/typos@master

.github/workflows/flatpak-test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ jobs:
2525
- cache: no-cache
2626
restore: cache-restored
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
# Docker is required by the docker/setup-qemu-action which enables emulation
3030
- name: Install deps
3131
if: ${{ matrix.arch != 'x86_64' }}
3232
run: |
33-
# Use the static binaries because it's unable to use a package manager
33+
# Use the static binaries because it's unable to use a package manager
3434
curl https://download.docker.com/linux/static/stable/x86_64/docker-26.0.0.tgz --output ./docker.tgz
3535
tar xzvf docker.tgz
3636
mv docker/* /usr/bin
3737
- name: Set up QEMU
3838
if: ${{ matrix.arch != 'x86_64' }}
39-
uses: docker/setup-qemu-action@v3
39+
uses: docker/setup-qemu-action@v4
4040
with:
4141
platforms: arm64
4242
- uses: ./flatpak-builder
@@ -62,7 +62,7 @@ jobs:
6262
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48
6363
options: --privileged
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v6
6666
- uses: ./flatpak-builder
6767
with:
6868
manifest-path: ./flatpak-builder/tests/test-project/org.example.MyApp.yaml
@@ -78,7 +78,7 @@ jobs:
7878
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-48
7979
options: --privileged
8080
steps:
81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v6
8282
- uses: ./flatpak-builder
8383
with:
8484
bundle: org.example.MyApp.Devel-cache-hit.flatpak
@@ -95,7 +95,7 @@ jobs:
9595
volumes:
9696
- /mnt/flatpak_workflow:/mnt/flatpak_workflow
9797
steps:
98-
- uses: actions/checkout@v4
98+
- uses: actions/checkout@v6
9999
- uses: ./flatpak-builder
100100
with:
101101
manifest-path: ./flatpak-builder/tests/test-project/org.example.MyApp.yaml
@@ -121,9 +121,9 @@ jobs:
121121
matrix:
122122
node-version: [24.x, 25.x]
123123
steps:
124-
- uses: actions/checkout@v4
124+
- uses: actions/checkout@v6
125125
- name: Use Node.js ${{ matrix.node-version }}
126-
uses: actions/setup-node@v3
126+
uses: actions/setup-node@v6
127127
with:
128128
node-version: ${{ matrix.node-version }}
129129
- run: yarn install --also=dev
@@ -135,9 +135,9 @@ jobs:
135135
name: Lint
136136
runs-on: ubuntu-latest
137137
steps:
138-
- uses: actions/checkout@v4
138+
- uses: actions/checkout@v6
139139
- name: Use Node.js 24
140-
uses: actions/setup-node@v3
140+
uses: actions/setup-node@v6
141141
with:
142142
node-version: "24"
143143
- run: yarn install --also=dev

0 commit comments

Comments
 (0)