Skip to content

Commit

Permalink
Bump the minor group with 4 updates
Browse files Browse the repository at this point in the history
Bumps the minor group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [devcontainers/ci](https://github.com/devcontainers/ci), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/checkout` from 4.1.2 to 4.1.3
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.2...v4.1.3)

Updates `devcontainers/ci` from 0.3.1900000348 to 0.3.1900000349
- [Release notes](https://github.com/devcontainers/ci/releases)
- [Commits](devcontainers/ci@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](actions/upload-artifact@v4.3.1...v4.3.3)

Updates `actions/download-artifact` from 4.1.4 to 4.1.6
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v4.1.4...v4.1.6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 22, 2024
1 parent 1226666 commit 6acce21
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3

- name: Install dependencies
uses: awalsh128/cache-apt-pkgs-action@v1.4.2
Expand Down Expand Up @@ -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.3

- name: Install dependencies
uses: awalsh128/cache-apt-pkgs-action@v1.4.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3

- name: Generate Image Name
run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0
Expand All @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
packages: write
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3

- name: Retrieve chart dependencies
working-directory: charts/sessions
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3

- name: Setup Regal
uses: StyraInc/setup-regal@v1.0.0
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3

- name: Setup OPA
uses: open-policy-agent/setup-opa@v2.2.0
Expand All @@ -49,7 +49,7 @@ jobs:
packages: write
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.3

- name: Generate Image Name
run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}-policy" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3

- name: Install stable toolchain
uses: actions-rs/toolchain@v1.0.7
Expand All @@ -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
Expand All @@ -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.6
with:
name: sessions.graphql

Expand Down

0 comments on commit 6acce21

Please sign in to comment.