diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4f915e2..5962629 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,11 +38,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -56,7 +56,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 # â„šī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -69,4 +69,4 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index abc8f34..b9941a1 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,7 +11,7 @@ jobs: name: Integrations steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Run integration tests run: make integration stop diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6747e6d..f1f44d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: Build, Tag, Push steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup env run: | diff --git a/.github/workflows/support-images.yml b/.github/workflows/support-images.yml index 9310e0a..cde4b6e 100644 --- a/.github/workflows/support-images.yml +++ b/.github/workflows/support-images.yml @@ -11,7 +11,7 @@ jobs: name: Build Support Images steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Build good nginx image run: | diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index 80ed18d..76ba07f 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -8,12 +8,12 @@ jobs: name: Unit steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Run unit tests run: make unit_docker - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.out