From 9eb7c33e1db580b5d9f0bb8a3889ab9bc399a68b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 23:29:09 +0000 Subject: [PATCH] Bump actions/setup-dotnet from 3 to 4 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3 to 4. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/dotnet-format.yml | 54 ++++++++++++++--------------- .github/workflows/mysql.yml | 2 +- .github/workflows/oracle.yml | 2 +- .github/workflows/pack.yml | 52 +++++++++++++-------------- .github/workflows/postgres.yml | 2 +- .github/workflows/sql-server.yml | 2 +- 7 files changed, 58 insertions(+), 58 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd37e950c..c24b85f65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x diff --git a/.github/workflows/dotnet-format.yml b/.github/workflows/dotnet-format.yml index f366b3082..e3e8312f3 100644 --- a/.github/workflows/dotnet-format.yml +++ b/.github/workflows/dotnet-format.yml @@ -1,28 +1,28 @@ -name: dotnet format - -on: - push: - branches: [ master ] - paths: - - '**.cs' - - 'src/.editorconfig' - pull_request: - branches: [ master ] - paths: - - '**.cs' - - 'src/.editorconfig' - -jobs: - check_format: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Setup .NET Core - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 8.0.x - - - name: dotnet format - run: dotnet format --verify-no-changes +name: dotnet format + +on: + push: + branches: [ master ] + paths: + - '**.cs' + - 'src/.editorconfig' + pull_request: + branches: [ master ] + paths: + - '**.cs' + - 'src/.editorconfig' + +jobs: + check_format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup .NET Core + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + + - name: dotnet format + run: dotnet format --verify-no-changes working-directory: src \ No newline at end of file diff --git a/.github/workflows/mysql.yml b/.github/workflows/mysql.yml index 76fb03dd1..ca640f4d7 100644 --- a/.github/workflows/mysql.yml +++ b/.github/workflows/mysql.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x diff --git a/.github/workflows/oracle.yml b/.github/workflows/oracle.yml index 2805df8e3..286a15934 100644 --- a/.github/workflows/oracle.yml +++ b/.github/workflows/oracle.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x diff --git a/.github/workflows/pack.yml b/.github/workflows/pack.yml index 03aeb8093..03fe884e9 100644 --- a/.github/workflows/pack.yml +++ b/.github/workflows/pack.yml @@ -1,26 +1,26 @@ -name: pack - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - pack: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Setup .NET Core - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 8.0.x - - - name: Install dependencies - run: dotnet restore - working-directory: src - - - name: Pack - run: dotnet pack --configuration Release --no-restore - working-directory: src +name: pack + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + pack: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup .NET Core + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + + - name: Install dependencies + run: dotnet restore + working-directory: src + + - name: Pack + run: dotnet pack --configuration Release --no-restore + working-directory: src diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml index 1f017ca00..e67cbdf22 100644 --- a/.github/workflows/postgres.yml +++ b/.github/workflows/postgres.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x diff --git a/.github/workflows/sql-server.yml b/.github/workflows/sql-server.yml index c0536636f..40457fef3 100644 --- a/.github/workflows/sql-server.yml +++ b/.github/workflows/sql-server.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x