Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/actions/build-layer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/publish-layer-collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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) }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-layer-collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-layer-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-layer-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-layer-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-layer-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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:
Expand Down
Loading