diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index 5896c6f4..0bce9ba3 100644 --- a/.github/workflows/anchore.yml +++ b/.github/workflows/anchore.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Build the Docker image run: cd ./dockerfiles/ && docker build . --file Dockerfile --tag localbuild/testimage:latest diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 4fd52dfd..d9f67332 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -35,7 +35,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 15430e5c..fb34475d 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -26,7 +26,7 @@ jobs: - name: Checkout # This step checks out the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/hadolint.yml b/.github/workflows/hadolint.yml index e6c7ec7e..d2a95bf8 100644 --- a/.github/workflows/hadolint.yml +++ b/.github/workflows/hadolint.yml @@ -30,7 +30,7 @@ jobs: actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run hadolint scanning on the controller Dockerfile uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf diff --git a/.github/workflows/plugin_update.yml b/.github/workflows/plugin_update.yml index 56816379..933c8f9a 100644 --- a/.github/workflows/plugin_update.yml +++ b/.github/workflows/plugin_update.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Configure git & gh run: | diff --git a/.github/workflows/test-jenkins.yml b/.github/workflows/test-jenkins.yml index 2d9a55a5..1e79ee91 100644 --- a/.github/workflows/test-jenkins.yml +++ b/.github/workflows/test-jenkins.yml @@ -23,7 +23,7 @@ jobs: BRANCH_SUFFIX: clean-up steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Fetch all history for all branches and tags. @@ -269,7 +269,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up and start Docker Compose run: | diff --git a/.github/workflows/updatecli.yaml b/.github/workflows/updatecli.yaml index a8a98be2..0f75a093 100644 --- a/.github/workflows/updatecli.yaml +++ b/.github/workflows/updatecli.yaml @@ -19,7 +19,7 @@ jobs: steps: # This step checks out the repository using the checkout action - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 # This step installs Updatecli in the runner using the updatecli-action - name: Install Updatecli in the runner