Skip to content

Commit edc6c42

Browse files
authored
Merge pull request #13 from amoyrtil/fix/node24-actions
ci: bump actions to Node.js 24 versions
2 parents aa080aa + 9e020ad commit edc6c42

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
kernel_image: ${{ steps.meta.outputs.kernel_image }}
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333

3434
- name: Clone siderolabs/talos
3535
run: |
@@ -63,10 +63,10 @@ jobs:
6363
git -C /tmp/pkgs apply --3way "${{ github.workspace }}/patches/kernel-config.patch"
6464
6565
- name: Set up Docker Buildx
66-
uses: docker/setup-buildx-action@v3
66+
uses: docker/setup-buildx-action@v4
6767

6868
- name: Log in to GHCR
69-
uses: docker/login-action@v3
69+
uses: docker/login-action@v4
7070
with:
7171
registry: ghcr.io
7272
username: ${{ github.actor }}
@@ -114,7 +114,7 @@ jobs:
114114
installer_image: ${{ steps.meta.outputs.installer_image }}
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@v6
118118

119119
- name: Set image tags
120120
id: meta
@@ -159,7 +159,7 @@ jobs:
159159
160160
- name: Set up Docker Buildx (with insecure local registry)
161161
if: steps.check-talos.outputs.exists == 'false'
162-
uses: docker/setup-buildx-action@v3
162+
uses: docker/setup-buildx-action@v4
163163
with:
164164
buildkitd-config-inline: |
165165
[registry."localhost:5000"]
@@ -168,7 +168,7 @@ jobs:
168168
driver-opts: network=host
169169

170170
- name: Log in to GHCR
171-
uses: docker/login-action@v3
171+
uses: docker/login-action@v4
172172
with:
173173
registry: ghcr.io
174174
username: ${{ github.actor }}
@@ -252,10 +252,10 @@ jobs:
252252
issues: write
253253
steps:
254254
- name: Checkout
255-
uses: actions/checkout@v4
255+
uses: actions/checkout@v6
256256

257257
- name: Log in to GHCR
258-
uses: docker/login-action@v3
258+
uses: docker/login-action@v4
259259
with:
260260
registry: ghcr.io
261261
username: ${{ github.actor }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 15
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Get latest Talos release tag
1818
id: talos-version
@@ -79,7 +79,7 @@ jobs:
7979
github.event.pull_request.changed_files > 0
8080
steps:
8181
- name: Checkout
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v6
8383
with:
8484
fetch-depth: 0
8585

@@ -129,7 +129,7 @@ jobs:
129129
130130
- name: Set up Docker Buildx
131131
if: steps.changes.outputs.patches_changed == 'true'
132-
uses: docker/setup-buildx-action@v3
132+
uses: docker/setup-buildx-action@v4
133133

134134
- name: Build kernel (compilation test)
135135
if: steps.changes.outputs.patches_changed == 'true'

0 commit comments

Comments
 (0)