From 71de820cb229a6d3ab60f337c8bd4f38c3ff0861 Mon Sep 17 00:00:00 2001 From: Karl Ludwig Weise Date: Wed, 29 Apr 2026 20:35:41 +0200 Subject: [PATCH] Updated checkout and setup-node github actions --- .github/workflows/pr-checks.yml | 8 ++++---- .github/workflows/release.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index a981e56..963f1e4 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -2,8 +2,8 @@ name: PR Checks on: pull_request: - branches: [main] - types: [opened, synchronize, reopened] + branches: [ main ] + types: [ opened, synchronize, reopened ] jobs: lint: @@ -11,10 +11,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "24" cache: "npm" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 305a1dc..11efdcf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: release: - types: [created, published] + types: [ created, published ] permissions: contents: write @@ -13,12 +13,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.event.release.tag_name }} - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "24" cache: "npm"