Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #18 from igilham/bazel-1.2.1
Browse files Browse the repository at this point in the history
feat: add support for Bazel 1.2.1
  • Loading branch information
ngalaiko authored Nov 27, 2019
2 parents 34be67e + a1af67c commit 3e39df6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- 1.0.0
- 1.1.0
- 1.2.0
- 1.2.1

steps:
- uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- 1.0.0
- 1.1.0
- 1.2.0
- 1.2.1

steps:
- uses: actions/checkout@v1
Expand Down
1 change: 1 addition & 0 deletions 1.2.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM ngalayko/bazel-action:1.2.1
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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++ \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 //...
```
Expand All @@ -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
Expand Down

0 comments on commit 3e39df6

Please sign in to comment.