From 3596af1725d1f7620ec5fb6b5dd5025281f7fa5f Mon Sep 17 00:00:00 2001 From: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Date: Mon, 14 Sep 2026 19:55:08 -0700 Subject: [PATCH] ci: fix self-repository references --- .github/actions/build-layer/action.yml | 8 ++++---- .github/workflows/integration-test.yml | 4 ++-- .github/workflows/ossf-scorecard.yml | 2 +- .github/workflows/publish-layer-collector.yml | 2 +- .github/workflows/release-layer-collector.yml | 4 ++-- .github/workflows/release-layer-java.yml | 8 ++++---- .github/workflows/release-layer-nodejs.yml | 6 +++--- .github/workflows/release-layer-python.yml | 6 +++--- .github/workflows/release-layer-ruby.yml | 6 +++--- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/actions/build-layer/action.yml b/.github/actions/build-layer/action.yml index 34806538cc..88bd5ae096 100644 --- a/.github/actions/build-layer/action.yml +++ b/.github/actions/build-layer/action.yml @@ -19,16 +19,16 @@ runs: steps: - if: ${{ inputs.language == 'nodejs' }} id: nodejs - uses: ./.github/actions/build-nodejs-layer + uses: $/.github/actions/build-nodejs-layer - if: ${{ inputs.language == 'python' }} id: python - uses: ./.github/actions/build-python-layer + uses: $/.github/actions/build-python-layer - if: ${{ inputs.language == 'ruby' }} id: ruby - uses: ./.github/actions/build-ruby-layer + uses: $/.github/actions/build-ruby-layer - if: ${{ inputs.language == 'javaagent' || inputs.language == 'javawrapper' }} id: java - uses: ./.github/actions/build-java-layer + uses: $/.github/actions/build-java-layer diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 3f4fb603e9..6f4a7227cb 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -61,7 +61,7 @@ jobs: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - uses: ./.github/actions/build-collector-layer + - uses: $/.github/actions/build-collector-layer id: build with: architecture: ${{ matrix.architecture }} @@ -82,7 +82,7 @@ jobs: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - uses: ./.github/actions/build-layer + - uses: $/.github/actions/build-layer id: build with: language: ${{ matrix.language }} diff --git a/.github/workflows/ossf-scorecard.yml b/.github/workflows/ossf-scorecard.yml index 5e636827a9..ab90c755c9 100644 --- a/.github/workflows/ossf-scorecard.yml +++ b/.github/workflows/ossf-scorecard.yml @@ -16,4 +16,4 @@ jobs: contents: read # for actions/checkout id-token: write # for Scorecard to publish results security-events: write # for the SARIF upload to code scanning - uses: open-telemetry/shared-workflows/.github/workflows/scorecard.yml@03559ef555db0eae5d85c3c6347d1530243e7aa7 # v0.13.0 + uses: open-telemetry/shared-workflows/.github/workflows/scorecard.yml@68c7b2f0ef9cd9c1e2b71d3018f63127be189578 # v0.14.0 diff --git a/.github/workflows/publish-layer-collector.yml b/.github/workflows/publish-layer-collector.yml index eec1c612da..ef59c65906 100644 --- a/.github/workflows/publish-layer-collector.yml +++ b/.github/workflows/publish-layer-collector.yml @@ -148,7 +148,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: prepare-release-jobs strategy: matrix: ${{ fromJSON(needs.prepare-release-jobs.outputs.release_jobs) }} diff --git a/.github/workflows/release-layer-collector.yml b/.github/workflows/release-layer-collector.yml index 306baa072f..444a3aa05d 100644 --- a/.github/workflows/release-layer-collector.yml +++ b/.github/workflows/release-layer-collector.yml @@ -38,7 +38,7 @@ jobs: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - uses: ./.github/actions/build-collector-layer + - uses: $/.github/actions/build-collector-layer id: build with: architecture: ${{ matrix.architecture }} @@ -56,7 +56,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: build-layer strategy: matrix: diff --git a/.github/workflows/release-layer-java.yml b/.github/workflows/release-layer-java.yml index aef07c1979..e5accb018a 100644 --- a/.github/workflows/release-layer-java.yml +++ b/.github/workflows/release-layer-java.yml @@ -35,7 +35,7 @@ jobs: with: persist-credentials: false - - uses: ./.github/actions/build-java-layer + - uses: $/.github/actions/build-java-layer id: build - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 @@ -72,7 +72,7 @@ jobs: strategy: matrix: flavor: [javaagent, javawrapper] - uses: ./.github/workflows/integration-test.yml + uses: $/.github/workflows/integration-test.yml with: language: ${{ matrix.flavor }} use-existing-layer-artifact: true @@ -83,7 +83,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: [build-layer, integration-test] strategy: matrix: @@ -140,7 +140,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: [build-layer, integration-test] strategy: matrix: diff --git a/.github/workflows/release-layer-nodejs.yml b/.github/workflows/release-layer-nodejs.yml index e95efe4d36..2d3f380812 100644 --- a/.github/workflows/release-layer-nodejs.yml +++ b/.github/workflows/release-layer-nodejs.yml @@ -34,7 +34,7 @@ jobs: with: persist-credentials: false - - uses: ./.github/actions/build-nodejs-layer + - uses: $/.github/actions/build-nodejs-layer id: build - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 @@ -54,7 +54,7 @@ jobs: contents: read id-token: write needs: build-layer - uses: ./.github/workflows/integration-test.yml + uses: $/.github/workflows/integration-test.yml with: language: nodejs use-existing-layer-artifact: true @@ -65,7 +65,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: [build-layer, integration-test] strategy: matrix: diff --git a/.github/workflows/release-layer-python.yml b/.github/workflows/release-layer-python.yml index c3bd163041..33ae9f22d4 100644 --- a/.github/workflows/release-layer-python.yml +++ b/.github/workflows/release-layer-python.yml @@ -19,7 +19,7 @@ jobs: with: persist-credentials: false - - uses: ./.github/actions/build-python-layer + - uses: $/.github/actions/build-python-layer id: build - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 @@ -33,7 +33,7 @@ jobs: contents: read id-token: write needs: build-layer - uses: ./.github/workflows/integration-test.yml + uses: $/.github/workflows/integration-test.yml with: language: python use-existing-layer-artifact: true @@ -68,7 +68,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: [build-layer, create-release] strategy: matrix: diff --git a/.github/workflows/release-layer-ruby.yml b/.github/workflows/release-layer-ruby.yml index 6787f0e1a2..1374e846ec 100644 --- a/.github/workflows/release-layer-ruby.yml +++ b/.github/workflows/release-layer-ruby.yml @@ -19,7 +19,7 @@ jobs: with: persist-credentials: false - - uses: ./.github/actions/build-ruby-layer + - uses: $/.github/actions/build-ruby-layer id: build - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 @@ -33,7 +33,7 @@ jobs: contents: read id-token: write needs: build-layer - uses: ./.github/workflows/integration-test.yml + uses: $/.github/workflows/integration-test.yml with: language: ruby use-existing-layer-artifact: true @@ -68,7 +68,7 @@ jobs: permissions: # required by the reusable workflow contents: read id-token: write - uses: ./.github/workflows/layer-publish.yml + uses: $/.github/workflows/layer-publish.yml needs: [build-layer, create-release] strategy: matrix: