Skip to content

Commit 8db172f

Browse files
build(deps): bump the dependencies group with 7 updates
Bumps the dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `5` | `7` | | [actions/cache](https://github.com/actions/cache) | `5.0.3` | `5.0.4` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `5` | `6` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | 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 `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `docker/build-push-action` from 5 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v7) Updates `actions/cache` from 5.0.3 to 5.0.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.3...v5.0.4) Updates `actions/configure-pages` from 5 to 6 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](actions/configure-pages@v5...v6) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: actions/configure-pages dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4a11dba commit 8db172f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ jobs:
4747
runs-on: ubuntu-24.04
4848
steps:
4949
- uses: actions/checkout@v6
50-
- uses: docker/setup-buildx-action@v3
51-
- uses: docker/login-action@v3
50+
- uses: docker/setup-buildx-action@v4
51+
- uses: docker/login-action@v4
5252
with:
5353
username: ${{ github.actor }}
5454
password: ${{ secrets.GITHUB_TOKEN }}
5555
registry: ghcr.io
56-
- uses: docker/metadata-action@v5
56+
- uses: docker/metadata-action@v6
5757
id: meta
5858
with:
5959
images: ghcr.io/${{ github.repository_owner }}/ruby.wasm/builder/${{ matrix.entry.target }}
60-
- uses: docker/build-push-action@v5
60+
- uses: docker/build-push-action@v7
6161
with:
6262
context: builders/${{ matrix.entry.target }}
6363
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}
@@ -102,13 +102,13 @@ jobs:
102102
- uses: actions/download-artifact@v8
103103
with:
104104
name: build-manifest
105-
- uses: actions/cache@v5.0.3
105+
- uses: actions/cache@v5.0.4
106106
if: ${{ matrix.entry.rubies_cache_key != null }}
107107
with:
108108
path: ./rubies
109109
key: ${{ matrix.entry.rubies_cache_key }}
110-
- uses: docker/setup-buildx-action@v3
111-
- uses: docker/build-push-action@v5
110+
- uses: docker/setup-buildx-action@v4
111+
- uses: docker/build-push-action@v7
112112
id: builder-image
113113
env:
114114
DOCKER_BUILD_NO_SUMMARY: true

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
bundler-cache: true
2929
- name: Setup Pages
3030
id: pages
31-
uses: actions/configure-pages@v5
31+
uses: actions/configure-pages@v6
3232
- name: Build HTML
3333
run: rake doc
3434
- name: Upload artifact
@@ -45,5 +45,5 @@ jobs:
4545
steps:
4646
- name: Deploy to GitHub Pages
4747
id: deployment
48-
uses: actions/deploy-pages@v4
48+
uses: actions/deploy-pages@v5
4949

0 commit comments

Comments
 (0)