diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 100dcf9..9cf860f 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -12,7 +12,7 @@ jobs: outputs: matrix: ${{ steps.versions.outputs.matrix }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.sha }} # lock to triggered commit ('github.ref' is dynamic) - id: versions @@ -31,7 +31,7 @@ jobs: matrix: py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.sha }} # lock to triggered commit ('github.ref' is dynamic) - uses: actions/setup-python@v5 @@ -49,7 +49,7 @@ jobs: matrix: py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.sha }} # lock to triggered commit ('github.ref' is dynamic) fetch-depth: 0 # setuptools-scm needs to access git tags @@ -67,7 +67,7 @@ jobs: if: ${{ github.actor != 'dependabot[bot]' }} # dependabot cannot access PAT runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} ref: ${{ github.ref }} # dont lock to sha (action needs to push) @@ -85,7 +85,7 @@ jobs: py-dependencies: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} ref: ${{ github.ref }} # dont lock to sha (action needs to push)