From 32b7ac51f9a91e712f30a851c86b2dbed1c4faf7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:24:46 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.1 to 4.1.2 (#3317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump actions/checkout from 4.1.1 to 4.1.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [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.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * Bump Microsoft.SourceLink.GitHub to 8.0.0 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Piotr Kiełkowicz --- .github/workflows/build-centos-native-container.yml | 2 +- .github/workflows/build-container.yml | 2 +- .github/workflows/build-nuget-packages.yml | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/build_and_push_image.yml | 2 +- .github/workflows/ci.yml | 10 +++++----- .github/workflows/demo.yml | 2 +- .github/workflows/dotnet-format.yml | 2 +- .github/workflows/format-native.yml | 4 ++-- .github/workflows/release-publish.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/validate-documentation.yml | 2 +- .github/workflows/verify-test.yml | 2 +- Directory.Packages.props | 2 ++ build/_build.csproj | 4 ++++ src/Directory.Build.props | 4 ++++ 16 files changed, 28 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build-centos-native-container.yml b/.github/workflows/build-centos-native-container.yml index 33a1bd0fa8..0085a06c64 100644 --- a/.github/workflows/build-centos-native-container.yml +++ b/.github/workflows/build-centos-native-container.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index 9234daa922..da4192fbca 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version diff --git a/.github/workflows/build-nuget-packages.yml b/.github/workflows/build-nuget-packages.yml index 82c6ee94e9..dc7e8a79e6 100644 --- a/.github/workflows/build-nuget-packages.yml +++ b/.github/workflows/build-nuget-packages.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec7da126a8..d228367178 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: run: cat /etc/os-release - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version diff --git a/.github/workflows/build_and_push_image.yml b/.github/workflows/build_and_push_image.yml index aab750149e..8e4299b6b5 100644 --- a/.github/workflows/build_and_push_image.yml +++ b/.github/workflows/build_and_push_image.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Log in to the Container registry uses: docker/login-action@v3.0.0 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a240fa5e9..949919dc32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version @@ -123,7 +123,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version @@ -163,7 +163,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version @@ -232,7 +232,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version @@ -263,7 +263,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 with: fetch-depth: 0 # fetching all, needed to correctly calculate version diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index c88dd9c36d..8ac4702112 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Test demo run: make test diff --git a/.github/workflows/dotnet-format.yml b/.github/workflows/dotnet-format.yml index 1f0e4d3c62..c25e045bd3 100644 --- a/.github/workflows/dotnet-format.yml +++ b/.github/workflows/dotnet-format.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Setup .NET 8 uses: actions/setup-dotnet@v4.0.0 diff --git a/.github/workflows/format-native.yml b/.github/workflows/format-native.yml index 68efcf3d47..22cbf6da2b 100644 --- a/.github/workflows/format-native.yml +++ b/.github/workflows/format-native.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Install Clang tools shell: bash @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Setup Go uses: actions/setup-go@v5.0.0 diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 67baaa3187..111c3493a8 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -114,7 +114,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Test the Shell scripts from README.md in Docker container run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 570ecc31df..19afc687ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Download artifacts uses: actions/download-artifact@v4.1.4 diff --git a/.github/workflows/validate-documentation.yml b/.github/workflows/validate-documentation.yml index d3c2c24d6f..cfa77992cf 100644 --- a/.github/workflows/validate-documentation.yml +++ b/.github/workflows/validate-documentation.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Run markdown links chceks if: ${{ !contains(github.event.pull_request.labels.*.name, 'release PR') }} diff --git a/.github/workflows/verify-test.yml b/.github/workflows/verify-test.yml index be9a3ba3b6..093e129245 100644 --- a/.github/workflows/verify-test.yml +++ b/.github/workflows/verify-test.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.2 - name: Setup ARM64 Environment Variables if: ${{ matrix.machine == 'actuated-arm64-4cpu-8gb' }} diff --git a/Directory.Packages.props b/Directory.Packages.props index d706a9edfc..e4cfd7c529 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -5,6 +5,8 @@ + + diff --git a/build/_build.csproj b/build/_build.csproj index 54d28c08a7..a0c0a210e9 100644 --- a/build/_build.csproj +++ b/build/_build.csproj @@ -23,6 +23,10 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Directory.Build.props b/src/Directory.Build.props index c05b498a0a..4eb6ed1cca 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -39,6 +39,10 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + all runtime; build; native; contentfiles; analyzers; buildtransitive