From 19906ad47781b18e0087613a529f80b101adb844 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Sep 2025 18:01:55 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/wipac-cicd.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/wipac-cicd.yml b/.github/workflows/wipac-cicd.yml index d021695..502128f 100644 --- a/.github/workflows/wipac-cicd.yml +++ b/.github/workflows/wipac-cicd.yml @@ -35,7 +35,7 @@ jobs: outputs: matrix: ${{ steps.versions.outputs.matrix }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) - id: versions @@ -54,7 +54,7 @@ jobs: matrix: py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) - uses: actions/setup-python@v5 @@ -73,7 +73,7 @@ jobs: matrix: py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) fetch-depth: 0 # setuptools-scm needs to access git tags @@ -90,7 +90,7 @@ jobs: py-setup: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} ref: ${{ github.ref }} # dont lock to sha (action needs to push) @@ -106,7 +106,7 @@ jobs: needs: [ flake8 ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) fetch-depth: 0 # setuptools-scm needs to access git tags @@ -128,7 +128,7 @@ jobs: runs-on: ubuntu-latest steps: - if: github.actor != 'dependabot[bot]' - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # fyi, dependabot can't access normal secrets ref: ${{ github.ref }} # dont lock to sha (action needs to push) @@ -175,7 +175,7 @@ jobs: schema-modifications: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # fyi, dependabot can't access normal secrets ref: ${{ github.ref }} # dont lock to sha (action needs to push) @@ -192,7 +192,7 @@ jobs: needs: [ schema-modifications ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} # fyi, dependabot can't access normal secrets ref: ${{ github.ref }} # dont lock to sha (action needs to push) @@ -208,7 +208,7 @@ jobs: test-build-docker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) fetch-depth: 0 # setuptools-scm needs to access git tags @@ -236,7 +236,7 @@ jobs: env: MONGODB_REPLICA_SET_MODE: primary steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) fetch-depth: 0 # setuptools-scm needs to access git tags @@ -300,7 +300,7 @@ jobs: matrix: py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: ref: ${{ github.sha }} # lock to triggered commit (github.ref is dynamic) fetch-depth: 0 # setuptools-scm needs to access git tags