diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9356d9..c0b0f4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: - 0.29.0 - 1.0.0 - 1.1.0 + - 1.2.0 steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 9d2c3de..e830675 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -14,6 +14,7 @@ jobs: - 0.29.0 - 1.0.0 - 1.1.0 + - 1.2.0 steps: - uses: actions/checkout@v1 diff --git a/1.2.0/Dockerfile b/1.2.0/Dockerfile new file mode 100644 index 0000000..ecb1a22 --- /dev/null +++ b/1.2.0/Dockerfile @@ -0,0 +1 @@ +FROM ngalayko/bazel-action:1.2.0 diff --git a/Dockerfile b/Dockerfile index 8a17ff6..3f50470 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:11 -ARG BAZEL_VERSION=1.1.0 +ARG BAZEL_VERSION=1.2.0 RUN apt-get update && apt-get install -y \ g++ \ diff --git a/README.md b/README.md index 75a454c..e453659 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@master - name: run - uses: ngalaiko/bazel-action/1.1.0@master + uses: ngalaiko/bazel-action/1.2.0@master with: args: build //... ``` @@ -35,13 +35,13 @@ field. The following fields are supported: ## bazel version -In order to speed up builds, `ngalaiko/bazel-action/@` uses prebuilt images with installed bazel +In order to speed up builds, `ngalaiko/bazel-action/@` uses prebuilt images with installed bazel and all dependencies. Images are stored in the [DockerHub](https://cloud.docker.com/u/ngalayko/repository/docker/ngalayko/bazel-action). If you need a specific bazel version, you can import it by changeing `uses` import path. For example: ```yaml -uses: ngalaiko/bazel-action/1.1.0@master +uses: ngalaiko/bazel-action/1.2.0@master ``` or