diff --git a/.github/workflows/cicd-1-pull-request.yaml b/.github/workflows/cicd-1-pull-request.yaml index 20e962b..dd7abc8 100644 --- a/.github/workflows/cicd-1-pull-request.yaml +++ b/.github/workflows/cicd-1-pull-request.yaml @@ -25,7 +25,7 @@ jobs: does_pull_request_exist: ${{ steps.pr_exists.outputs.does_pull_request_exist }} steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Set CI/CD variables" id: variables run: | diff --git a/.github/workflows/cicd-2-publish.yaml b/.github/workflows/cicd-2-publish.yaml index 8bbdc92..6e77a0d 100644 --- a/.github/workflows/cicd-2-publish.yaml +++ b/.github/workflows/cicd-2-publish.yaml @@ -21,7 +21,7 @@ jobs: version: ${{ steps.variables.outputs.version }} steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Set CI/CD variables" id: variables run: | @@ -50,7 +50,7 @@ jobs: timeout-minutes: 3 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Get the artefacts" run: | echo "Getting the artefacts created by the build stage ..." diff --git a/.github/workflows/cicd-3-deploy.yaml b/.github/workflows/cicd-3-deploy.yaml index 793f067..31b3571 100644 --- a/.github/workflows/cicd-3-deploy.yaml +++ b/.github/workflows/cicd-3-deploy.yaml @@ -23,7 +23,7 @@ jobs: tag: ${{ steps.variables.outputs.tag }} steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Set CI/CD variables" id: variables run: | @@ -53,7 +53,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 # TODO: More jobs or/and steps here # success: # name: "Success notification" diff --git a/.github/workflows/publish-specification.yaml b/.github/workflows/publish-specification.yaml index 4c027ae..396df80 100644 --- a/.github/workflows/publish-specification.yaml +++ b/.github/workflows/publish-specification.yaml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python 3.11 uses: actions/setup-python@v6 diff --git a/.github/workflows/publish_sandbox.yaml b/.github/workflows/publish_sandbox.yaml index ba68054..eb92952 100644 --- a/.github/workflows/publish_sandbox.yaml +++ b/.github/workflows/publish_sandbox.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python 3.11 uses: actions/setup-python@v6 diff --git a/.github/workflows/stage-1-commit.yaml b/.github/workflows/stage-1-commit.yaml index c2aeaa8..939908b 100644 --- a/.github/workflows/stage-1-commit.yaml +++ b/.github/workflows/stage-1-commit.yaml @@ -35,7 +35,7 @@ jobs: timeout-minutes: 2 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full history is needed to scan all commits - name: "Scan secrets" @@ -46,7 +46,7 @@ jobs: timeout-minutes: 2 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check file format" @@ -57,7 +57,7 @@ jobs: timeout-minutes: 2 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check Markdown format" @@ -68,7 +68,7 @@ jobs: timeout-minutes: 2 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full history is needed to compare branches - name: "Check English usage" @@ -82,7 +82,7 @@ jobs: timeout-minutes: 2 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Count lines of code" uses: ./.github/actions/create-lines-of-code-report with: @@ -101,7 +101,7 @@ jobs: timeout-minutes: 2 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Scan dependencies" uses: ./.github/actions/scan-dependencies with: @@ -115,7 +115,7 @@ jobs: name: "Lint and validate OpenAPI" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./.github/actions/lint-and-validate-specification with: apim-env: sandbox # or your desired environment diff --git a/.github/workflows/stage-2-test.yaml b/.github/workflows/stage-2-test.yaml index 9b38f19..2242107 100644 --- a/.github/workflows/stage-2-test.yaml +++ b/.github/workflows/stage-2-test.yaml @@ -35,7 +35,7 @@ jobs: timeout-minutes: 5 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run unit test suite" run: | make test-unit @@ -48,7 +48,7 @@ jobs: timeout-minutes: 5 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run linting" run: | make test-lint @@ -62,7 +62,7 @@ jobs: timeout-minutes: 5 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run test coverage check" run: | make test-coverage @@ -79,7 +79,7 @@ jobs: timeout-minutes: 5 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full history is needed to improving relevancy of reporting - name: "Perform static analysis" diff --git a/.github/workflows/stage-3-build.yaml b/.github/workflows/stage-3-build.yaml index 4ca5d22..e179f30 100644 --- a/.github/workflows/stage-3-build.yaml +++ b/.github/workflows/stage-3-build.yaml @@ -35,7 +35,7 @@ jobs: timeout-minutes: 3 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Build artefact 1" run: | echo "Building artefact 1 ..." @@ -52,7 +52,7 @@ jobs: timeout-minutes: 3 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Build artefact 2" run: | echo "Building artefact 2 ..." diff --git a/.github/workflows/stage-4-acceptance.yaml b/.github/workflows/stage-4-acceptance.yaml index fb75ebf..a57bc74 100644 --- a/.github/workflows/stage-4-acceptance.yaml +++ b/.github/workflows/stage-4-acceptance.yaml @@ -35,7 +35,7 @@ jobs: timeout-minutes: 5 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Create infractructure" run: | echo "Creating infractructure..." @@ -52,7 +52,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run contract test" run: | make test-contract @@ -66,7 +66,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run security test" run: | make test-security @@ -80,7 +80,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run UI test" run: | make test-ui @@ -94,7 +94,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run UI performance test" run: | make test-ui-performance @@ -108,7 +108,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run integration test" run: | make test-integration @@ -122,7 +122,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run accessibility test" run: | make test-accessibility @@ -136,7 +136,7 @@ jobs: timeout-minutes: 10 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Run load tests" run: | make test-load @@ -160,7 +160,7 @@ jobs: timeout-minutes: 5 steps: - name: "Checkout code" - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: "Tear down environment" run: | echo "Tearing down environment..."