Skip to content

Update dependencies #513

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

Merged
merged 6 commits into from
Jun 12, 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
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
nuGetVersionV2: ${{ steps.gitversion.outputs.nuGetVersionV2 }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -91,7 +91,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -135,13 +135,13 @@ jobs:
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH

- name: Install License Finder tool with Homebrew
uses: tecoli-com/actions-use-homebrew-tools@v1.1
uses: tecoli-com/actions-use-homebrew-tools@v1.2
with:
tools: licensefinder
cache: yes

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -194,14 +194,14 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
DOTNET_TEST: ${{ matrix.database }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -273,7 +273,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
MAJORMINORPATCH: ${{ needs.calc-version.outputs.majorMinorPatch }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
fail-fast: true

outputs:
Expand All @@ -329,7 +329,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -338,7 +338,7 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:
env:
SEMVER: ${{ needs.calc-version.outputs.semVer }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -490,15 +490,15 @@ jobs:
dotnet-version: "8.0.x"

- name: Enable NuGet cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget

- name: Setup DocFX
uses: crazy-max/ghaction-chocolatey@v2
uses: crazy-max/ghaction-chocolatey@v3
with:
args: install docfx

Expand Down Expand Up @@ -568,7 +568,7 @@ jobs:
MAJORMINORPATCH: ${{ needs.calc-version.outputs.majorMinorPatch }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get clean \
&& apt-get update \
&& apt-get install -y --no-install-recommends curl \
&& apt-get install -y libc6-dev=2.35-0ubuntu3.7 \
&& apt-get install -y libc6-dev=2.35-0ubuntu3.8 \
&& rm -rf /var/lib/apt/lists # this is a workaround for Mongo encryption library

WORKDIR /opt/monai/ig
Expand Down
Loading
Loading