Skip to content

Commit

Permalink
Merge pull request #9 from serokell/diogo/add-0.2.2
Browse files Browse the repository at this point in the history
Add version 0.2.2
  • Loading branch information
dcastro authored Oct 27, 2022
2 parents e669a8f + b8b0fdd commit 81d3967
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,8 @@ jobs:
uses: ./
with:
xrefcheck-version: 0.2.1

- name: Run 0.2.2
uses: ./
with:
xrefcheck-version: 0.2.2
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM alpine:3.11
# Install dependencies
RUN apk update
## pass these flags to make the image smaller
RUN apk --no-cache --virtual add bash wget
RUN apk --no-cache --virtual add bash wget git

# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ In a future version it may contain an absolute path.

### Example

To run `xrefcheck-0.2.1` on your repository in the `local-only` mode:
To run `xrefcheck-0.2.2` on your repository in the `local-only` mode:

```yaml
jobs:
Expand All @@ -41,17 +41,18 @@ jobs:
- uses: actions/checkout@v2
- uses: serokell/xrefcheck-action@v1
with:
xrefcheck-version: 0.2.1
xrefcheck-version: 0.2.2
xrefcheck-args: --mode local-only
```
### Supported versions
### Supported xrefcheck versions
<!-- Make sure to update ci.yml when you update this list -->
- 0.1.2
- 0.1.3
- 0.2
- 0.2.1
- 0.2.2: requires xrefcheck-action v1.0.3 or greater
#### Updating supported versions
Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ if [ "$need_run" == true ]; then
set +x
fi

echo "::set-output name=xrefcheck-path::$xrefcheck_path"
echo "xrefcheck-path=$xrefcheck_path" >> $GITHUB_OUTPUT

0 comments on commit 81d3967

Please sign in to comment.