Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.24"
go-version: "1.26"
- name: List packages in go workspace
run: echo "packages=$(go list -f '{{.Dir}}/...' -m | xargs)" >> $GITHUB_OUTPUT
id: packages
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.23 AS gobuild
FROM golang:1.26 AS gobuild
WORKDIR /src
ARG BUILD_TAGS

Expand All @@ -23,7 +23,7 @@
COPY . .
RUN set -x; if [ "$BUILD_TAGS" = "e2ecollector" ]; then BUILD_DIRECTORY="e2etestrunner_collector"; else BUILD_TAGS="e2e"; BUILD_DIRECTORY="e2etestrunner"; fi; CGO_ENABLED=0 go test -timeout 3600s -tags=$BUILD_TAGS -c "./$BUILD_DIRECTORY" -o opentelemetry-operations-e2e-testing.test

FROM hashicorp/terraform:1.13 as tfbuild

Check warning on line 26 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-docker-image

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
COPY tf /src/tf
WORKDIR /src/tf
ENV TF_PLUGIN_CACHE_DIR=/src/tf/terraform-plugin-cache
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

module github.com/GoogleCloudPlatform/opentelemetry-operations-e2e-testing

go 1.23
go 1.26

require (
cloud.google.com/go/logging v1.11.0
Expand Down
Loading