diff --git a/.github/actions/build-collection/action.yaml b/.github/actions/build-collection/action.yaml index 05bae47..2d69c3a 100644 --- a/.github/actions/build-collection/action.yaml +++ b/.github/actions/build-collection/action.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Dynatrace LLC +# Copyright 2024 Dynatrace LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/actions/run-tests/action.yaml b/.github/actions/run-tests/action.yaml index c4879f9..3008c4e 100644 --- a/.github/actions/run-tests/action.yaml +++ b/.github/actions/run-tests/action.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Dynatrace LLC +# Copyright 2024 Dynatrace LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/actions/setup-build-environment/action.yaml b/.github/actions/setup-build-environment/action.yaml index b9c652c..1af8cfc 100644 --- a/.github/actions/setup-build-environment/action.yaml +++ b/.github/actions/setup-build-environment/action.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Dynatrace LLC +# Copyright 2024 Dynatrace LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/actions/upload-collection/action.yaml b/.github/actions/upload-collection/action.yaml index 7f4c0ce..8676796 100644 --- a/.github/actions/upload-collection/action.yaml +++ b/.github/actions/upload-collection/action.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Dynatrace LLC +# Copyright 2024 Dynatrace LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 7f6589c..cbaa0f5 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Dynatrace LLC +# Copyright 2024 Dynatrace LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -29,6 +29,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/setup-build-environment - - uses: ./.github/actions/build-collection - - uses: ./.github/actions/run-tests + - name: Setting up environment + uses: ./.github/actions/setup-build-environment + - name: Building the collection + uses: ./.github/actions/build-collection + - name: Running tests + uses: ./.github/actions/run-tests diff --git a/.github/workflows/build-test-upload.yaml b/.github/workflows/build-test-upload.yaml index cda15ba..24a8a78 100644 --- a/.github/workflows/build-test-upload.yaml +++ b/.github/workflows/build-test-upload.yaml @@ -1,4 +1,4 @@ -# Copyright 2023 Dynatrace LLC +# Copyright 2024 Dynatrace LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,12 +18,11 @@ on: types: [ 'closed' ] workflow_dispatch: -env: - FILES_DIR: roles/oneagent/files - jobs: build-and-test: runs-on: ubuntu-latest steps: - - uses: ./.github/workflows/build-and-test.yaml - - uses: ./.github/actions/upload-collection + - name: Build and test + uses: ./.github/workflows/build-and-test.yaml + - name: Upload the collection + uses: ./.github/actions/upload-collection