diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index b537e866..4dad99ce 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -10,7 +10,7 @@ jobs: env: TERM: xterm steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Check text files format diff --git a/.github/workflows/code-security.yml b/.github/workflows/code-security.yml index cb63ad39..1494f4f5 100644 --- a/.github/workflows/code-security.yml +++ b/.github/workflows/code-security.yml @@ -6,7 +6,7 @@ jobs: env: TERM: xterm steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Check if code contains any secrets diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 92d750ec..c1004443 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -8,7 +8,7 @@ jobs: env: TERM: xterm steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Check pull request title diff --git a/.github/workflows/sonar-scan.yml b/.github/workflows/sonar-scan.yml index a7bdf5d0..b6a7ca5d 100644 --- a/.github/workflows/sonar-scan.yml +++ b/.github/workflows/sonar-scan.yml @@ -13,7 +13,7 @@ jobs: working-directory: ./application steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up JDK 17 uses: actions/setup-java@v4