From b12a9513277e9cd0e8bade32d302bdb86b359962 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 19:17:44 +0000 Subject: [PATCH] Bump the minor group across 1 directory with 5 updates Bumps the minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.4` | `4.1.7` | | [docker/login-action](https://github.com/docker/login-action) | `3.1.0` | `3.3.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.3.0` | `3.5.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.0.2` | `4.0.3` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.3` | `4.3.4` | Updates `actions/checkout` from 4.1.4 to 4.1.7 - [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.1.4...v4.1.7) Updates `docker/login-action` from 3.1.0 to 3.3.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.1.0...v3.3.0) Updates `docker/setup-buildx-action` from 3.3.0 to 3.5.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.3.0...v3.5.0) Updates `actions/setup-node` from 4.0.2 to 4.0.3 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4.0.2...v4.0.3) Updates `actions/upload-artifact` from 4.3.3 to 4.3.4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.3...v4.3.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: docker/login-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: actions/setup-node 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/backend-code.yml | 4 ++-- .github/workflows/charts.yml | 2 +- .github/workflows/container.yml | 6 +++--- .github/workflows/devcontainer.yml | 4 ++-- .github/workflows/docs.yml | 2 +- .github/workflows/frontend-code.yml | 8 ++++---- .github/workflows/policy.yml | 4 ++-- .github/workflows/schema.yml | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/backend-code.yml b/.github/workflows/backend-code.yml index 17a35434..9a9d34d2 100644 --- a/.github/workflows/backend-code.yml +++ b/.github/workflows/backend-code.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Install dependencies uses: awalsh128/cache-apt-pkgs-action@v1.4.2 @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Install dependencies uses: awalsh128/cache-apt-pkgs-action@v1.4.2 diff --git a/.github/workflows/charts.yml b/.github/workflows/charts.yml index a392a69a..b6d3cded 100644 --- a/.github/workflows/charts.yml +++ b/.github/workflows/charts.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 with: fetch-depth: 0 diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 4d9024f5..a8ae363f 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -26,7 +26,7 @@ jobs: packages: write steps: - name: Checkout with LFS - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 with: lfs: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }} @@ -35,7 +35,7 @@ jobs: - name: Log in to GitHub Docker Registry if: github.event_name != 'pull_request' - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.3.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -51,7 +51,7 @@ jobs: type=raw,value=latest - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 + uses: docker/setup-buildx-action@v3.5.0 - name: Build Image uses: docker/build-push-action@v5.3.0 diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index e37e63aa..09449c76 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -17,10 +17,10 @@ jobs: - "backend" steps: - name: Checkout - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.3.0 + uses: docker/setup-buildx-action@v3.5.0 - name: Build dev container uses: devcontainers/ci@v0.3.1900000349 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 465432dc..e3aa1751 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Install dependencies uses: awalsh128/cache-apt-pkgs-action@v1.4.2 diff --git a/.github/workflows/frontend-code.yml b/.github/workflows/frontend-code.yml index 247ef230..a9628018 100644 --- a/.github/workflows/frontend-code.yml +++ b/.github/workflows/frontend-code.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Node Action - uses: actions/setup-node@v4.0.2 + uses: actions/setup-node@v4.0.3 with: node-version: 18.x cache: "npm" @@ -40,10 +40,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Node Action - uses: actions/setup-node@v4.0.2 + uses: actions/setup-node@v4.0.3 with: node-version: 18.x cache: "npm" diff --git a/.github/workflows/policy.yml b/.github/workflows/policy.yml index 89e8d8fa..7265a339 100644 --- a/.github/workflows/policy.yml +++ b/.github/workflows/policy.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Setup OPA uses: open-policy-agent/setup-opa@v2 @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Setup OPA uses: open-policy-agent/setup-opa@v2 diff --git a/.github/workflows/schema.yml b/.github/workflows/schema.yml index 14891594..93090139 100644 --- a/.github/workflows/schema.yml +++ b/.github/workflows/schema.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.1.7 - name: Install stable toolchain uses: actions-rs/toolchain@v1.0.7 @@ -39,7 +39,7 @@ jobs: --path ${{ matrix.service }}.graphql - name: Upload Schema Artifact - uses: actions/upload-artifact@v4.3.3 + uses: actions/upload-artifact@v4.3.4 with: name: ${{ matrix.service }}.graphql path: ${{ matrix.service }}.graphql