From a1af67c62ba4ad22005a0589600b63c2d54abc29 Mon Sep 17 00:00:00 2001 From: Ian Gilham Date: Wed, 27 Nov 2019 13:12:39 +0000 Subject: [PATCH] feat: add support for Bazel 1.2.1 https://github.com/bazelbuild/bazel/releases/tag/1.2.1 --- .github/workflows/ci.yml | 1 + .github/workflows/pr.yaml | 1 + 1.2.1/Dockerfile | 1 + Dockerfile | 2 +- README.md | 4 ++-- 5 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 1.2.1/Dockerfile diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0b0f4b..717f988 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,7 @@ jobs: - 1.0.0 - 1.1.0 - 1.2.0 + - 1.2.1 steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index e830675..6a01eca 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -15,6 +15,7 @@ jobs: - 1.0.0 - 1.1.0 - 1.2.0 + - 1.2.1 steps: - uses: actions/checkout@v1 diff --git a/1.2.1/Dockerfile b/1.2.1/Dockerfile new file mode 100644 index 0000000..fde5a8a --- /dev/null +++ b/1.2.1/Dockerfile @@ -0,0 +1 @@ +FROM ngalayko/bazel-action:1.2.1 diff --git a/Dockerfile b/Dockerfile index 3f50470..1b652fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM openjdk:11 -ARG BAZEL_VERSION=1.2.0 +ARG BAZEL_VERSION=1.2.1 RUN apt-get update && apt-get install -y \ g++ \ diff --git a/README.md b/README.md index e453659..57af57f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@master - name: run - uses: ngalaiko/bazel-action/1.2.0@master + uses: ngalaiko/bazel-action/1.2.1@master with: args: build //... ``` @@ -41,7 +41,7 @@ and all dependencies. Images are stored in the [DockerHub](https://cloud.docker. If you need a specific bazel version, you can import it by changeing `uses` import path. For example: ```yaml -uses: ngalaiko/bazel-action/1.2.0@master +uses: ngalaiko/bazel-action/1.2.1@master ``` or