Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the minor group with 3 updates #107

Merged
merged 1 commit into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bunder-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- 3306:3306
steps:
- name: Checkout source
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Generate Image Name
run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}-bundler" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundler-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.3
uses: actions/checkout@v4.1.4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1.0.7
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
DATABASE_URL: mysql://root:rootpassword@localhost/ispyb_build
steps:
- name: Checkout source
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1.0.7
Expand Down
2 changes: 1 addition & 1 deletion .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.3
uses: actions/checkout@v4.1.4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/docs.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.3
uses: actions/checkout@v4.1.4

- name: Setup Node
uses: actions/setup-node@v4.0.2
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Setup Python
uses: actions/setup-python@v5.1.0
Expand All @@ -52,7 +52,7 @@ jobs:
run: chmod -R +rX site

- name: Upload User Docs Artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: user-docs
path: site
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get docs artifact
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: user-docs
path: site
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
DATABASE_URL: mysql://root:rootpassword@localhost/ispyb_build
steps:
- name: Checkout source
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Install stable toolchain
uses: actions-rs/toolchain@v1.0.7
Expand All @@ -126,7 +126,7 @@ jobs:
run: chmod -R +rX bundler/target/doc

- name: Upload Bundler Docs Artifact
uses: actions/upload-artifact@v4.3.2
uses: actions/upload-artifact@v4.3.3
with:
name: bundler-docs
path: bundler/target/doc/bundler
Expand All @@ -138,13 +138,13 @@ jobs:
- bundler_build
steps:
- name: Download User Docs Artifact
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: user-docs
path: docs

- name: Download User Docs Artifact
uses: actions/download-artifact@v4.1.5
uses: actions/download-artifact@v4.1.7
with:
name: bundler-docs
path: docs/bundler
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/helm-charts.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.3
uses: actions/checkout@v4.1.4
with:
fetch-depth: 0

Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
- bundler
steps:
- name: Checkout source
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Package Chart
run: helm package charts/${{ matrix.chart }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/policy-code.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.3
uses: actions/checkout@v4.1.4

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

- name: Setup OPA
uses: open-policy-agent/setup-opa@v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/policy-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
packages: write
steps:
- name: Checkout source
uses: actions/checkout@v4.1.3
uses: actions/checkout@v4.1.4

- name: Generate Image Name
run: echo IMAGE_REPOSITORY=ghcr.io/$(echo "${{ github.repository }}-policy" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV
Expand Down
Loading