From c57c34e7813ecc1e36f1435b851cefde14e62fab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 17:52:45 +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.2` | `4.1.6` | | [docker/login-action](https://github.com/docker/login-action) | `3.1.0` | `3.2.0` | | [devcontainers/ci](https://github.com/devcontainers/ci) | `0.3.1900000348` | `0.3.1900000349` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.1` | `4.3.3` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.4` | `4.1.7` | Updates `actions/checkout` from 4.1.2 to 4.1.6 - [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.2...v4.1.6) Updates `docker/login-action` from 3.1.0 to 3.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.1.0...v3.2.0) Updates `devcontainers/ci` from 0.3.1900000348 to 0.3.1900000349 - [Release notes](https://github.com/devcontainers/ci/releases) - [Commits](https://github.com/devcontainers/ci/compare/v0.3.1900000348...v0.3.1900000349) Updates `actions/upload-artifact` from 4.3.1 to 4.3.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.3) Updates `actions/download-artifact` from 4.1.4 to 4.1.7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.7) --- 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: devcontainers/ci 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: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor ... Signed-off-by: dependabot[bot] --- .github/workflows/code.yml | 4 ++-- .github/workflows/container.yml | 4 ++-- .github/workflows/devcontainer.yml | 4 ++-- .github/workflows/helm.yml | 6 +++--- .github/workflows/policy.yml | 8 ++++---- .github/workflows/schema.yml | 6 +++--- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index e35ae89..6d57741 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -22,7 +22,7 @@ jobs: DATABASE_URL: mysql://root:rootpassword@localhost/ispyb_build steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Install dependencies uses: awalsh128/cache-apt-pkgs-action@v1.4.2 @@ -79,7 +79,7 @@ jobs: DATABASE_URL: mysql://root:rootpassword@localhost/ispyb_build steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Install dependencies uses: awalsh128/cache-apt-pkgs-action@v1.4.2 diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 927491f..0ae107b 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -23,14 +23,14 @@ jobs: packages: write steps: - name: Checkout Code - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Generate Image Name run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV - 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.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index 51b67b3..6f93810 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3.3.0 @@ -20,4 +20,4 @@ jobs: run: touch .devcontainer/opa.env - name: Build dev container - uses: devcontainers/ci@v0.3.1900000348 + uses: devcontainers/ci@v0.3.1900000349 diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index cd7e198..5e04980 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 with: fetch-depth: 0 @@ -39,7 +39,7 @@ jobs: packages: write steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Retrieve chart dependencies working-directory: charts/sessions @@ -54,7 +54,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.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/policy.yml b/.github/workflows/policy.yml index d582ca3..3fae945 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.2 + uses: actions/checkout@v4.1.6 - name: Setup Regal uses: StyraInc/setup-regal@v1.0.0 @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Setup OPA uses: open-policy-agent/setup-opa@v2.2.0 @@ -49,13 +49,13 @@ jobs: packages: write steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Generate Image Name run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}-policy" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV - name: Log in to GitHub Docker Registry - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/schema.yml b/.github/workflows/schema.yml index ead6cb6..7058628 100644 --- a/.github/workflows/schema.yml +++ b/.github/workflows/schema.yml @@ -22,7 +22,7 @@ jobs: DATABASE_URL: mysql://root:rootpassword@localhost:3306/ispyb_build steps: - name: Checkout source - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.1.6 - name: Install stable toolchain uses: actions-rs/toolchain@v1.0.7 @@ -42,7 +42,7 @@ jobs: --path sessions.graphql - name: Upload Schema Artifact - uses: actions/upload-artifact@v4.3.1 + uses: actions/upload-artifact@v4.3.3 with: name: sessions.graphql path: sessions.graphql @@ -60,7 +60,7 @@ jobs: echo "$HOME/.rover/bin" >> $GITHUB_PATH - name: Download Schema Artifact - uses: actions/download-artifact@v4.1.4 + uses: actions/download-artifact@v4.1.7 with: name: sessions.graphql