From 8824b6acb4d50cc14b50a11ea7949f81033cd443 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 00:09:50 +0000 Subject: [PATCH] build(deps): bump the all-actions group across 1 directory with 2 updates Bumps the all-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build_ts.yml | 4 ++-- .github/workflows/main.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_ts.yml b/.github/workflows/build_ts.yml index 5a50ba8..4db654e 100644 --- a/.github/workflows/build_ts.yml +++ b/.github/workflows/build_ts.yml @@ -18,10 +18,10 @@ jobs: name: Build typescript runs-on: arc-runners-small steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .node-version cache: 'npm' diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 163726f..f63acfb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,10 +15,10 @@ jobs: name: Lint runs-on: arc-runners-small steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .node-version cache: 'npm' @@ -37,10 +37,10 @@ jobs: name: Type Check runs-on: arc-runners-small steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .node-version cache: 'npm' @@ -65,10 +65,10 @@ jobs: matrix: node-version: [ 18.x, 20.x, 21.x, 22.x ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} cache: 'npm'