Skip to content

Commit

Permalink
Merge pull request #2 from nnichols/use-remote-image
Browse files Browse the repository at this point in the history
Use remote image
  • Loading branch information
nnichols authored Jan 9, 2021
2 parents 1865642 + 256d0ed commit 1ee257a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Changelog

## v2 - 01/09/2021

- Use Docker image with dependencies pre-loaded

## v1 - 01/07/2021

- Initial Implementation
14 changes: 1 addition & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,4 @@
FROM maven:3-openjdk-11-slim AS BASE

LABEL "com.github.actions.name"="Maven Version Bump Action"
LABEL "com.github.actions.description"="A simple GitHub Actions to bump the version of Maven projects"
LABEL "com.github.actions.color"="purple"
LABEL "com.github.actions.icon"="git-commit"

LABEL "repository"="https://github.com/nnichols/maven-version-bump-action"
LABEL "homepage"="https://github.com/nnichols"
LABEL "maintainer"="Nick Nichols <[email protected]>"

RUN apt-get update
RUN apt-get install --no-install-recommends -y gnupg2 software-properties-common git
FROM nnichols/maven-version-bump-action AS BASE

COPY version-bump.sh /version-bump.sh

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v2

- name: Bump Version
uses: nnichols/maven-version-bump-action@v1
uses: nnichols/maven-version-bump-action@v2
with:
github-token: ${{ secrets.github_token }}
```
Expand Down

0 comments on commit 1ee257a

Please sign in to comment.