Skip to content

Commit 77a6366

Browse files
chore(deps): bump the minor group across 1 directory with 10 updates
Bumps the minor group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.8` | `4.2.1` | | [docker/login-action](https://github.com/docker/login-action) | `3.3.0` | `3.4.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.6.1` | `5.7.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.9.0` | `3.10.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.13.0` | `6.15.0` | | [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) | `2.7.7` | `2.7.8` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.0` | `4.6.2` | | [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) | `2.0.4` | `2.0.11` | | [actions/setup-python](https://github.com/actions/setup-python) | `5.4.0` | `5.5.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.2.0` | `4.3.0` | Updates `actions/download-artifact` from 4.1.8 to 4.2.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4.1.8...v4.2.1) Updates `docker/login-action` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3.3.0...v3.4.0) Updates `docker/metadata-action` from 5.6.1 to 5.7.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5.6.1...v5.7.0) Updates `docker/setup-buildx-action` from 3.9.0 to 3.10.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3.9.0...v3.10.0) Updates `docker/build-push-action` from 6.13.0 to 6.15.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6.13.0...v6.15.0) Updates `Swatinem/rust-cache` from 2.7.7 to 2.7.8 - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](Swatinem/rust-cache@v2.7.7...v2.7.8) Updates `actions/upload-artifact` from 4.6.0 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.0...v4.6.2) Updates `EmbarkStudios/cargo-deny-action` from 2.0.4 to 2.0.11 - [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases) - [Commits](EmbarkStudios/cargo-deny-action@v2.0.4...v2.0.11) Updates `actions/setup-python` from 5.4.0 to 5.5.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5.4.0...v5.5.0) Updates `actions/setup-node` from 4.2.0 to 4.3.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4.2.0...v4.3.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: EmbarkStudios/cargo-deny-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ea41efd commit 77a6366

12 files changed

+23
-23
lines changed

.github/workflows/_bundler_container.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4.2.2
1515

1616
- name: Download Prepared Queries Artifact
17-
uses: actions/download-artifact@v4.1.8
17+
uses: actions/download-artifact@v4.2.1
1818
with:
1919
name: prepared-queries
2020
path: bundler/.sqlx
@@ -24,26 +24,26 @@ jobs:
2424

2525
- name: Log in to GitHub Docker Registry
2626
if: github.event_name != 'pull_request'
27-
uses: docker/login-action@v3.3.0
27+
uses: docker/login-action@v3.4.0
2828
with:
2929
registry: ghcr.io
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

3333
- name: Docker Metadata
3434
id: meta
35-
uses: docker/metadata-action@v5.6.1
35+
uses: docker/metadata-action@v5.7.0
3636
with:
3737
images: ${{ env.IMAGE_REPOSITORY }}
3838
tags: |
3939
type=ref,event=tag
4040
type=raw,value=latest
4141
4242
- name: Set up Docker Buildx
43-
uses: docker/setup-buildx-action@v3.9.0
43+
uses: docker/setup-buildx-action@v3.10.0
4444

4545
- name: Build & Publish Image
46-
uses: docker/build-push-action@v6.13.0
46+
uses: docker/build-push-action@v6.15.0
4747
with:
4848
context: bundler/
4949
push: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}

.github/workflows/_bundler_docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4.2.2
1212

1313
- name: Download Prepared Queries Artifact
14-
uses: actions/download-artifact@v4.1.8
14+
uses: actions/download-artifact@v4.2.1
1515
with:
1616
name: prepared-queries
1717
path: bundler/.sqlx
@@ -23,7 +23,7 @@ jobs:
2323
default: true
2424

2525
- name: Cache Rust Build
26-
uses: Swatinem/rust-cache@v2.7.7
26+
uses: Swatinem/rust-cache@v2.7.8
2727

2828
- name: Build docs
2929
uses: actions-rs/cargo@v1.0.3
@@ -39,7 +39,7 @@ jobs:
3939
run: chmod -R +rX bundler/target/doc
4040

4141
- name: Upload Bundler Docs Artifact
42-
uses: actions/upload-artifact@v4.6.0
42+
uses: actions/upload-artifact@v4.6.2
4343
with:
4444
name: bundler-docs
4545
path: bundler/target/doc/bundler

.github/workflows/_bundler_lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4.2.2
1212

1313
- name: Check Dependencies with Cargo Deny
14-
uses: EmbarkStudios/cargo-deny-action@v2.0.4
14+
uses: EmbarkStudios/cargo-deny-action@v2.0.11
1515
with:
1616
manifest-path: bundler/Cargo.toml
1717
command: check bans licenses sources
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v4.2.2
2424

2525
- name: Download Prepared Queries Artifact
26-
uses: actions/download-artifact@v4.1.8
26+
uses: actions/download-artifact@v4.2.1
2727
with:
2828
name: prepared-queries
2929
path: bundler/.sqlx
@@ -35,7 +35,7 @@ jobs:
3535
default: true
3636

3737
- name: Cache Rust Build
38-
uses: Swatinem/rust-cache@v2.7.7
38+
uses: Swatinem/rust-cache@v2.7.8
3939

4040
- name: Check Formatting
4141
uses: actions-rs/cargo@v1.0.3

.github/workflows/_bundler_sqlx.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
default: true
3131

3232
- name: Cache Rust Build
33-
uses: Swatinem/rust-cache@v2.7.7
33+
uses: Swatinem/rust-cache@v2.7.8
3434

3535
- name: Install SQLX CLI
3636
run: cargo install sqlx-cli
@@ -40,7 +40,7 @@ jobs:
4040
run: cargo sqlx prepare
4141

4242
- name: Upload Prepared Queries Artifact
43-
uses: actions/upload-artifact@v4.6.0
43+
uses: actions/upload-artifact@v4.6.2
4444
with:
4545
name: prepared-queries
4646
path: bundler/.sqlx

.github/workflows/_bundler_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
default: true
3131

3232
- name: Cache Rust Build
33-
uses: Swatinem/rust-cache@v2.7.7
33+
uses: Swatinem/rust-cache@v2.7.8
3434

3535
- name: Test
3636
uses: actions-rs/cargo@v1.0.3

.github/workflows/_devcontainer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4.2.2
1212

1313
- name: Set up Docker Buildx
14-
uses: docker/setup-buildx-action@v3.9.0
14+
uses: docker/setup-buildx-action@v3.10.0
1515

1616
- name: Build dev container
1717
uses: devcontainers/ci@v0.3.1900000417

.github/workflows/_docs_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4.2.2
1212

1313
- name: Setup Python
14-
uses: actions/setup-python@v5.4.0
14+
uses: actions/setup-python@v5.5.0
1515
with:
1616
python-version: 3.12
1717

@@ -25,7 +25,7 @@ jobs:
2525
run: chmod -R +rX site
2626

2727
- name: Upload User Docs Artifact
28-
uses: actions/upload-artifact@v4.6.0
28+
uses: actions/upload-artifact@v4.6.2
2929
with:
3030
name: user-docs
3131
path: site

.github/workflows/_docs_lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4.2.2
1212

1313
- name: Setup Node
14-
uses: actions/setup-node@v4.2.0
14+
uses: actions/setup-node@v4.3.0
1515
with:
1616
node-version: 18
1717

.github/workflows/_helm_chart_publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Log in to GitHub Docker Registry
3333
if: github.event_name != 'pull_request'
34-
uses: docker/login-action@v3.3.0
34+
uses: docker/login-action@v3.4.0
3535
with:
3636
registry: ghcr.io
3737
username: ${{ github.actor }}

.github/workflows/_pages_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Download User Docs Artifact
11-
uses: actions/download-artifact@v4.1.8
11+
uses: actions/download-artifact@v4.2.1
1212
with:
1313
name: user-docs
1414
path: docs
1515

1616
- name: Download User Docs Artifact
17-
uses: actions/download-artifact@v4.1.8
17+
uses: actions/download-artifact@v4.2.1
1818
with:
1919
name: bundler-docs
2020
path: docs/bundler

0 commit comments

Comments
 (0)