diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index cafa4a5ab..44c1796d4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -47,7 +47,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@3ab4101902695724f9365a384f86c1074d94e18c # v3.24.7 + uses: github/codeql-action/init@4355270be187e1b672a7a1c7c7bae5afdc1ab94a # v3.24.10 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -58,7 +58,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@3ab4101902695724f9365a384f86c1074d94e18c # v3.24.7 + uses: github/codeql-action/autobuild@4355270be187e1b672a7a1c7c7bae5afdc1ab94a # v3.24.10 # ℹī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -72,4 +72,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@3ab4101902695724f9365a384f86c1074d94e18c # v3.24.7 + uses: github/codeql-action/analyze@4355270be187e1b672a7a1c7c7bae5afdc1ab94a # v3.24.10 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86406a595..087c1682e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: go test -covermode=atomic -coverprofile=coverage.out ./... - name: coverage - uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0 + uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0 with: token: ${{ secrets.CODECOV_TOKEN }} file: coverage.out diff --git a/go.mod b/go.mod index da69f4f17..e492acfa7 100644 --- a/go.mod +++ b/go.mod @@ -1,18 +1,18 @@ module github.com/go-vela/worker -go 1.21.9 +go 1.22.2 toolchain go1.22.2 require ( github.com/Masterminds/semver/v3 v3.2.1 - github.com/distribution/reference v0.5.0 - github.com/docker/docker v26.0.0+incompatible + github.com/distribution/reference v0.6.0 + github.com/docker/docker v26.0.1+incompatible github.com/docker/go-units v0.5.0 github.com/gin-gonic/gin v1.9.1 - github.com/go-vela/sdk-go v0.23.3-0.20240411165353-c3fdc7210625 - github.com/go-vela/server v0.23.4-0.20240411145541-132447406cf7 - github.com/go-vela/types v0.23.4-0.20240405205548-f24f795ac0b7 + github.com/go-vela/sdk-go v0.23.3 + github.com/go-vela/server v0.23.4 + github.com/go-vela/types cabbb617296d github.com/golang-jwt/jwt/v5 v5.2.1 github.com/google/go-cmp v0.6.0 github.com/joho/godotenv v1.5.1 @@ -20,11 +20,11 @@ require ( github.com/prometheus/client_golang v1.19.0 github.com/sirupsen/logrus v1.9.3 github.com/urfave/cli/v2 v2.27.1 - golang.org/x/sync v0.6.0 + golang.org/x/sync v0.7.0 gotest.tools/v3 v3.5.1 - k8s.io/api v0.29.2 - k8s.io/apimachinery v0.29.2 - k8s.io/client-go v0.29.2 + k8s.io/api v0.29.3 + k8s.io/apimachinery v0.29.3 + k8s.io/client-go v0.29.3 sigs.k8s.io/yaml v1.4.0 )