From e10246589b9e8817d997a6eaaf27d0856fdb0bef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 17:02:47 +0000 Subject: [PATCH] Bump actions/checkout from 3.5.3 to 3.6.0 (#2877) Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 3.6.0. - [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/v3.5.3...v3.6.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rajkumar Rangaraj --- .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 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml index ad6a37055f..c03d35b358 100644 --- a/.github/workflows/build-container.yml +++ b/.github/workflows/build-container.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 60 steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - name: Build in Docker container diff --git a/.github/workflows/build-nuget-packages.yml b/.github/workflows/build-nuget-packages.yml index 754619cc9b..f49a3ed700 100644 --- a/.github/workflows/build-nuget-packages.yml +++ b/.github/workflows/build-nuget-packages.yml @@ -23,7 +23,7 @@ jobs: runs-on: windows-2022 steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - uses: actions/setup-dotnet@v3.2.0 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 861ac55af4..4c5db87973 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: log-dir: "/var/log/opentelemetry/dotnet" runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - uses: actions/setup-dotnet@v3.2.0 diff --git a/.github/workflows/build_and_push_image.yml b/.github/workflows/build_and_push_image.yml index c9b931512c..ff7d216c33 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 repository - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v3.6.0 - name: Log in to the Container registry uses: docker/login-action@v2.2.0 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 33bf74ca94..3d66e9ee30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: containers: none runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - uses: actions/setup-dotnet@v3.2.0 @@ -88,7 +88,7 @@ jobs: machine: [ windows-2022 ] runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - uses: actions/setup-dotnet@v3.2.0 @@ -119,7 +119,7 @@ jobs: containers: windows-only runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - uses: actions/setup-dotnet@v3.2.0 @@ -167,7 +167,7 @@ jobs: runs-on: ubuntu-20.04 timeout-minutes: 60 steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - name: Download Artifacts from build job @@ -193,7 +193,7 @@ jobs: - machine: windows-2022 runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 with: fetch-depth: 0 # fetching all, needed to correctly calculate version - uses: actions/setup-dotnet@v3.2.0 diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 402b6c9114..3599fe32c9 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - name: Test demo run: make test working-directory: examples/demo diff --git a/.github/workflows/dotnet-format.yml b/.github/workflows/dotnet-format.yml index fd6d66f9b8..6b4df8d20c 100644 --- a/.github/workflows/dotnet-format.yml +++ b/.github/workflows/dotnet-format.yml @@ -20,7 +20,7 @@ jobs: steps: - name: check out code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v3.6.0 - name: Setup .NET 7.0 uses: actions/setup-dotnet@v3.2.0 diff --git a/.github/workflows/format-native.yml b/.github/workflows/format-native.yml index f2a3e0e5e7..4ba6ee869d 100644 --- a/.github/workflows/format-native.yml +++ b/.github/workflows/format-native.yml @@ -16,7 +16,7 @@ jobs: runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - name: Install Clang tools shell: bash @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - uses: actions/setup-go@v4.1.0 with: go-version: '1.20.1' diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 947fe513a4..f014533704 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -85,7 +85,7 @@ jobs: base-image: [ alpine, centos ] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - name: Test the Shell scripts from README.md in Docker container run: | set -e diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f47cd2ef74..a0cbdc6d1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: contents: write timeout-minutes: 10 steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - uses: actions/download-artifact@v3.0.2 with: path: . diff --git a/.github/workflows/validate-documentation.yml b/.github/workflows/validate-documentation.yml index db024b6a97..d7ffb2efce 100644 --- a/.github/workflows/validate-documentation.yml +++ b/.github/workflows/validate-documentation.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - uses: lycheeverse/lychee-action@v1.8.0 with: fail: true diff --git a/.github/workflows/verify-test.yml b/.github/workflows/verify-test.yml index 66247aadb4..f4b4b3749c 100644 --- a/.github/workflows/verify-test.yml +++ b/.github/workflows/verify-test.yml @@ -26,7 +26,7 @@ jobs: containers: none runs-on: ${{ matrix.machine }} steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v3.6.0 - uses: actions/setup-dotnet@v3.2.0 with: dotnet-version: |