diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 85f4841..8ae51bb 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -20,12 +20,12 @@ jobs: env: CGO_ENABLED: 0 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: 1.26 @@ -33,7 +33,7 @@ jobs: run: go test -v ./... -coverprofile=./coverage.txt -covermode=atomic - name: Upload coverage results to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: false path_to_write_report: ./coverage.txt @@ -57,12 +57,12 @@ jobs: go_versions: '1.26' fail-fast: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: '${{ matrix.go_versions }}' @@ -87,11 +87,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. @@ -102,7 +102,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. # 📚 https://git.io/JvXDl @@ -116,4 +116,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4