Skip to content

Commit e490475

Browse files
Alexander Martynenkoclaude
andcommitted
chore: update GitHub Actions to latest versions
- actions/checkout@v4 → v6 - actions/ai-inference@v1 → v2 - actions/upload-artifact@v4 → v7 - actions/download-artifact@v4 → v8 Fixes Node.js 20 deprecation warning. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c1de6a1 commit e490475

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-and-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
current_version: ${{ steps.version.outputs.current_version }}
3838
steps:
3939
- name: Checkout repo (with submodules)
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141
with:
4242
submodules: true
4343
fetch-depth: 0 # full history for tag lookups
@@ -192,7 +192,7 @@ jobs:
192192
- name: Ask LLM for version bump
193193
if: steps.override.outputs.skipped == 'true'
194194
id: ai
195-
uses: actions/ai-inference@v1
195+
uses: actions/ai-inference@v2
196196
with:
197197
model: openai/gpt-4.1
198198
system-prompt: |
@@ -260,7 +260,7 @@ jobs:
260260
runs-on: ubuntu-latest
261261
steps:
262262
- name: Checkout repo (with submodules)
263-
uses: actions/checkout@v4
263+
uses: actions/checkout@v6
264264
with:
265265
submodules: true
266266

@@ -282,7 +282,7 @@ jobs:
282282
zip -r "$GITHUB_WORKSPACE/katran-bpf-${{ needs.determine-version.outputs.next_version }}.zip" .
283283
284284
- name: Upload build artifact
285-
uses: actions/upload-artifact@v4
285+
uses: actions/upload-artifact@v7
286286
with:
287287
name: katran-bpf
288288
path: "katran-bpf-${{ needs.determine-version.outputs.next_version }}.zip"
@@ -296,7 +296,7 @@ jobs:
296296
runs-on: ubuntu-latest
297297
steps:
298298
- name: Checkout repo
299-
uses: actions/checkout@v4
299+
uses: actions/checkout@v6
300300
with:
301301
submodules: true
302302
fetch-depth: 0
@@ -321,7 +321,7 @@ jobs:
321321
fi
322322
323323
- name: Download build artifact
324-
uses: actions/download-artifact@v4
324+
uses: actions/download-artifact@v8
325325
with:
326326
name: katran-bpf
327327

0 commit comments

Comments
 (0)