Skip to content

Commit

Permalink
v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kaz-utashiro committed Oct 30, 2022
1 parent 3cea17b commit 23a02d5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- id: add-apt-repo
uses: tecoli-com/actions-install-and-cache@v0.5
uses: tecolicom/actions-install-and-cache@v1
with:
cache: workflow
sudo: true
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- id: add-apt-repo
uses: tecoli-com/actions-install-and-cache@v0.5
uses: tecolicom/actions-install-and-cache@v1
with:
cache: workflow
sudo: true
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.1

- Version 1.1

## v0.5

- use `$GITHUB_OUTPUT`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Output is same as [`@actions/cache`](https://github.com/actions/cache).
# path: { required: false, type: string,
# default: "/etc /usr/bin /usr/sbin /usr/lib /usr/share /var/lib" }

- uses: tecoli-com/actions-use-apt-tools@v0
- uses: tecolicom/actions-use-apt-tools@v1
with:

# apt packages
Expand Down Expand Up @@ -63,7 +63,7 @@ Output is same as [`@actions/cache`](https://github.com/actions/cache).
### Normal case with default *package* method
```yaml
- uses: tecoli-com/actions-use-apt-tools@v0
- uses: tecolicom/actions-use-apt-tools@v1
with:
tools: bmake
```
Expand All @@ -75,7 +75,7 @@ package during installation, use *timestamp* method. If you know
where they will be placed, provide them by a *path* parameter.
```yaml
- uses: tecoli-com/actions-use-apt-tools@v0
- uses: tecolicom/actions-use-apt-tools@v1
with:
tools: mecab mecab-ipadic mecab-ipadic-utf8
method: timestamp
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ runs:
inputs.method == 'timestamp' &&
steps.setup.outputs.cache != 'no' &&
steps.cache.outputs.cache-hit != 'true'
uses: tecoli-com/actions-install-and-archive@v0.5
uses: tecolicom/actions-install-and-archive@v1
with:
run: apt-get install -y ${{ inputs.tools }}
archive: ${{ steps.setup.outputs.archive }}
Expand Down

0 comments on commit 23a02d5

Please sign in to comment.