diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 3de2d3e..664651b 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -37,7 +37,7 @@ jobs: # Checkout code # https://github.com/actions/checkout - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Extract metadata (tags, labels) for Docker # If the pull request is not merged, do not include the edge tag and only include the sha tag. diff --git a/.github/workflows/keyfactor-bootstrap-workflow.yml b/.github/workflows/keyfactor-bootstrap-workflow.yml index 2899714..65a14a9 100644 --- a/.github/workflows/keyfactor-bootstrap-workflow.yml +++ b/.github/workflows/keyfactor-bootstrap-workflow.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Check out the code - uses: actions/checkout@v3 + uses: actions/checkout@v7 with: token: ${{ secrets.V2BUILDTOKEN}} diff --git a/.github/workflows/mock_tests.yml b/.github/workflows/mock_tests.yml index e3a3aef..bf28320 100644 --- a/.github/workflows/mock_tests.yml +++ b/.github/workflows/mock_tests.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 @@ -63,7 +63,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 @@ -97,7 +97,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 diff --git a/.github/workflows/update-stores.yml b/.github/workflows/update-stores.yml index 5925cc1..c032543 100644 --- a/.github/workflows/update-stores.yml +++ b/.github/workflows/update-stores.yml @@ -79,7 +79,7 @@ jobs: # If the branch with an open PR already exists, first check out that branch from kfutil - name: Check out existing repo merge branch if: env.PR_BRANCH == 'commit' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: 'keyfactor/kfutil' sparse-checkout: | @@ -92,7 +92,7 @@ jobs: # If the branch does not exist, first check out the main branch from kfutil. - name: Check out main if: env.PR_BRANCH == 'create' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: 'keyfactor/kfutil' sparse-checkout: | @@ -109,7 +109,7 @@ jobs: # Checkout and run the python tool - name: Check out python merge tool repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: 'keyfactor/integration-tools' path: './tools/'