diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index 6ea9a8f..8d05e4e 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/IOManager ref: ${{ inputs.branch }} @@ -99,13 +99,13 @@ jobs: - name: Load IOMgr Cache id: restore-cache - uses: eBay/sisl/.github/actions/load_conan@stable/v8.x + uses: eBay/sisl/.github/actions/load_conan@master with: testing: ${{ inputs.testing }} key_prefix: IOMgrDeps-${{ 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' }} @@ -148,13 +148,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: IOMgrDeps-${{ 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 @@ -190,7 +190,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