diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index f0f20a5..a36b882 100644 --- a/.github/workflows/build_dependencies.yml +++ b/.github/workflows/build_dependencies.yml @@ -85,13 +85,13 @@ jobs: runs-on: ${{ inputs.platform }} steps: - name: Retrieve Code - uses: actions/checkout@v3 + uses: actions/checkout@main with: ref: ${{ inputs.branch }} if: ${{ inputs.testing == 'True' }} - name: Retrieve Recipe - uses: actions/checkout@v3 + uses: actions/checkout@main with: repository: eBay/nuraft_mesg ref: ${{ inputs.branch }} @@ -105,7 +105,7 @@ jobs: key_prefix: NuMesgDeps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }} - name: Retrieve Dependencies - uses: actions/checkout@v3 + uses: actions/checkout@main with: repository: eBay/sisl path: import/sisl @@ -113,7 +113,7 @@ jobs: if: ${{ inputs.testing == 'True' || steps.restore-cache.outputs.cache-hit != 'true' }} - name: Load Sisl Cache - uses: eBay/sisl/.github/actions/load_conan@stable/v8.x + uses: eBay/sisl/.github/actions/load_conan@master with: testing: 'False' path: import/sisl @@ -122,7 +122,7 @@ jobs: if: ${{ inputs.testing == 'True' || steps.restore-cache.outputs.cache-hit != 'true' }} - name: Setup Conan - uses: eBay/sisl/.github/actions/setup_conan@stable/v8.x + uses: eBay/sisl/.github/actions/setup_conan@master with: platform: ${{ inputs.platform }} if: ${{ inputs.testing == 'True' || steps.restore-cache.outputs.cache-hit != 'true' }} @@ -147,13 +147,13 @@ jobs: if: ${{ steps.restore-cache.outputs.cache-hit != 'true' }} - name: Save Conan Cache - uses: eBay/sisl/.github/actions/store_conan@stable/v8.x + uses: eBay/sisl/.github/actions/store_conan@master with: key_prefix: NuMesgDeps-${{ inputs.platform }}-${{ inputs.build-type }}-${{ inputs.malloc-impl }}-${{ inputs.prerelease }} if: ${{ github.event_name != 'pull_request' && steps.restore-cache.outputs.cache-hit != 'true' }} - name: Reload Sisl Cache - uses: eBay/sisl/.github/actions/load_conan@stable/v8.x + uses: eBay/sisl/.github/actions/load_conan@master with: testing: 'False' path: import/sisl @@ -186,7 +186,7 @@ jobs: if: ${{ inputs.testing == 'True' && inputs.tooling == 'Coverage' }} - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} gcov: true