diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8e567062..740f386d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 126ffb00..264f5ce5 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -27,15 +27,15 @@ jobs: APP_PATH: integration-test-apps/${{ matrix.instrumentation-type}}-instrumentation/${{ matrix.app-platform }} steps: - name: Checkout This Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Checkout OpenTelemetry Python Core Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ matrix.instrumentation-type == 'manual' }} with: repository: open-telemetry/opentelemetry-python path: ${{ env.APP_PATH }}/opentelemetry-python-core - name: Checkout OpenTelemetry Python Contrib Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ matrix.instrumentation-type == 'manual' }} with: repository: open-telemetry/opentelemetry-python-contrib diff --git a/.github/workflows/soak-testing.yml b/.github/workflows/soak-testing.yml index b4dbef78..9ad03f19 100644 --- a/.github/workflows/soak-testing.yml +++ b/.github/workflows/soak-testing.yml @@ -64,7 +64,7 @@ jobs: run: | echo "TEST_DURATION_MINUTES=${{ github.event.inputs.test_duration_minutes || env.DEFAULT_TEST_DURATION_MINUTES }}" | tee --append $GITHUB_ENV; - name: Clone This Repo @ ${{ env.TARGET_SHA }} - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ env.TARGET_SHA }} @@ -92,7 +92,7 @@ jobs: # FIXME: We might also consider making this configurable for the # Auto-Instrumentation app. - name: Clone OpenTelemetry Core Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ matrix.instrumentation-type == 'manual' }} with: repository: open-telemetry/opentelemetry-python @@ -102,7 +102,7 @@ jobs: # run against a specific Contrib repo change. For the manual # instrumentation app. - name: Clone OpenTelemetry Contrib Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 if: ${{ matrix.instrumentation-type == 'manual' }} with: repository: open-telemetry/opentelemetry-python-contrib