Skip to content

Commit 7d0f2e0

Browse files
ci(deps): bump the actions-patches group with 4 updates
Bumps the actions-patches group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [taiki-e/install-action](https://github.com/taiki-e/install-action), [docker/build-push-action](https://github.com/docker/build-push-action) and [crate-ci/typos](https://github.com/crate-ci/typos). Updates `actions/checkout` from 6 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v6.0.2) Updates `taiki-e/install-action` from 2.79.1 to 2.79.7 - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](taiki-e/install-action@v2.79.1...v2.79.7) Updates `docker/build-push-action` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v7.1.0...v7.2.0) Updates `crate-ci/typos` from 1.46.2 to 1.46.3 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.46.2...v1.46.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-patches - dependency-name: taiki-e/install-action dependency-version: 2.79.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-patches - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-patches - dependency-name: crate-ci/typos dependency-version: 1.46.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-patches ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 735f85d commit 7d0f2e0

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- name: Free up space
5454
run: sudo rm -rf /opt/hostedtoolcache /usr/share/dotnet /usr/local/lib/android /opt/ghc /usr/local/.ghcup || true
55-
- uses: actions/checkout@v6
55+
- uses: actions/checkout@v6.0.2
5656
with:
5757
submodules: recursive
5858

@@ -62,7 +62,7 @@ jobs:
6262
rustup default stable
6363
rustup target add ${{ matrix.target }}
6464
65-
- uses: taiki-e/install-action@v2.79.1
65+
- uses: taiki-e/install-action@v2.79.7
6666
with:
6767
tool: just
6868

@@ -94,7 +94,7 @@ jobs:
9494
- name: Login to ghcr.io
9595
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
9696

97-
- uses: actions/checkout@v6
97+
- uses: actions/checkout@v6.0.2
9898
with:
9999
submodules: recursive
100100

@@ -143,7 +143,7 @@ jobs:
143143
org.opencontainers.image.licenses=GPL-3.0-or-later
144144
145145
- name: Build and push
146-
uses: docker/build-push-action@v7.1.0
146+
uses: docker/build-push-action@v7.2.0
147147
with:
148148
context: .github/build-context
149149
file: Containerfile

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.platform }}
2929

3030
steps:
31-
- uses: actions/checkout@v6
31+
- uses: actions/checkout@v6.0.2
3232
- name: Configure toolchain
3333
run: |
3434
rustup toolchain install --profile minimal --no-self-update stable
@@ -41,7 +41,7 @@ jobs:
4141
name: Clippy
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@v6
44+
- uses: actions/checkout@v6.0.2
4545
- name: Configure toolchain
4646
run: |
4747
rustup toolchain install --profile minimal --no-self-update stable
@@ -54,7 +54,7 @@ jobs:
5454
name: Generate CRDs
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v6
57+
- uses: actions/checkout@v6.0.2
5858
- name: Configure toolchain
5959
run: |
6060
rustup toolchain install --profile minimal --no-self-update stable
@@ -72,7 +72,7 @@ jobs:
7272
needs: [gen-crds]
7373
runs-on: ubuntu-latest
7474
steps:
75-
- uses: actions/checkout@v6
75+
- uses: actions/checkout@v6.0.2
7676
- uses: actions/download-artifact@v8
7777
with:
7878
name: crds

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
needs_non_pg_snapshot: false
5858

5959
steps:
60-
- uses: actions/checkout@v6
60+
- uses: actions/checkout@v6.0.2
6161

6262
- name: Configure toolchain
6363
run: |

.github/workflows/typos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
name: Spellcheck
1111
runs-on: ubuntu-slim
1212
steps:
13-
- uses: actions/checkout@v6
13+
- uses: actions/checkout@v6.0.2
1414
- name: Check spelling
15-
uses: crate-ci/typos@v1.46.2
15+
uses: crate-ci/typos@v1.46.3
1616
with:
1717
config: .typos.toml

0 commit comments

Comments
 (0)