Skip to content

Commit dadaa6e

Browse files
build(deps): bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9c0d0b3 commit dadaa6e

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
runs-on: ubuntu-24.04
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737

3838
- name: Setup Node.js
39-
uses: actions/setup-node@v4
39+
uses: actions/setup-node@v6
4040
with:
4141
node-version: 20
4242

4343
- name: Setup Python
44-
uses: actions/setup-python@v5
44+
uses: actions/setup-python@v6
4545
with:
4646
python-version: "3.12"
4747

@@ -109,13 +109,13 @@ jobs:
109109
# QEMU setup for ARM64 cross-compilation
110110
- name: Set up QEMU
111111
if: matrix.qemu == true
112-
uses: docker/setup-qemu-action@v3
112+
uses: docker/setup-qemu-action@v4
113113
with:
114114
platforms: arm64
115115

116116
- name: Set up Docker Buildx
117117
if: matrix.qemu == true
118-
uses: docker/setup-buildx-action@v3
118+
uses: docker/setup-buildx-action@v4
119119

120120
# System dependencies for Rocky Linux container
121121
- name: Install system dependencies (Rocky Linux)
@@ -133,26 +133,26 @@ jobs:
133133
apk add --no-cache build-base python3 pkgconf git nodejs npm zlib-dev bzip2-dev
134134
135135
- name: Checkout
136-
uses: actions/checkout@v4
136+
uses: actions/checkout@v6
137137

138138
# Node.js setup for non-container jobs (macOS)
139139
- name: Setup Node.js
140140
if: matrix.os == 'darwin'
141-
uses: actions/setup-node@v4
141+
uses: actions/setup-node@v6
142142
with:
143143
node-version: 20
144144

145145
# Node.js setup for Rocky Linux container
146146
- name: Install Node.js (Rocky Linux)
147147
if: contains(matrix.container, 'rockylinux')
148-
uses: actions/setup-node@v4
148+
uses: actions/setup-node@v6
149149
with:
150150
node-version: 20
151151

152152
# Cache node-gyp for macOS
153153
- name: Cache node-gyp
154154
if: matrix.os == 'darwin'
155-
uses: actions/cache@v4
155+
uses: actions/cache@v5
156156
with:
157157
path: |
158158
~/.cache/node-gyp

0 commit comments

Comments
 (0)