Skip to content

Commit 8fe1ec9

Browse files
committed
Prepare for release of 0.2
1 parent ef1f4fb commit 8fe1ec9

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

apt-get-install/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Installs packages on a Debian or Ubuntu runner. Does not support any other OS, b
55
Example usage:
66

77
```yml
8-
- uses: UoMResearchIT/actions/apt-get-install@0.1
8+
- uses: UoMResearchIT/actions/apt-get-install@0.2
99
with:
1010
packages: vera++
1111
```

check-copyrights/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Note that, in general, all public files with a suitable human-readable comment f
99
Example usage:
1010

1111
```yml
12-
- uses: UoMResearchIT/actions/check-copyrights@0.1
12+
- uses: UoMResearchIT/actions/check-copyrights@0.2
1313
with:
1414
config-file: rat_asl20.xml
1515
```

commit-id/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It's assumed that updated file will not be committed back to the repository; thi
1010
### C and C++
1111

1212
```yml
13-
- uses: UoMResearchIT/actions/commit-id@main
13+
- uses: UoMResearchIT/actions/commit-id@0.2
1414
with:
1515
file: src/build_id.h
1616
```
@@ -22,7 +22,7 @@ Which might be paired with a source file (in `src/build_id.h` for example) like
2222
```
2323
### Python
2424
```yml
25-
- uses: UoMResearchIT/actions/commit-id@main
25+
- uses: UoMResearchIT/actions/commit-id@0.2
2626
with:
2727
file: src/version.py
2828
```

compare-output/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The expected and actual outputs are written to the log to aid debugging of failu
1111
Example usage:
1212

1313
```yml
14-
- uses: UoMResearchIT/actions/compare-output@0.1
14+
- uses: UoMResearchIT/actions/compare-output@0.2
1515
with:
1616
command: echo foo
1717
expected: foo

run-c-style-check/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This runs a [simple style checker](https://github.com/verateam/vera) on a direct
88
Example usage:
99

1010
```yml
11-
- uses: UoMResearchIT/actions/run-c-style-check@main
11+
- uses: UoMResearchIT/actions/run-c-style-check@0.2
1212
with:
1313
base-dir: src
1414
```

run-c-style-check/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ runs:
3838
using: composite
3939
steps:
4040
- name: install vera
41-
uses: UoMResearchIT/actions/apt-get-install@main
41+
uses: UoMResearchIT/actions/apt-get-install@0.2
4242
with:
4343
packages: vera++
4444
- name: analyse code

run-clang-tidy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Runs [clang-tidy](https://clang.llvm.org/extra/clang-tidy/) against a C or C++ c
55
Example usage:
66

77
```yml
8-
- uses: UoMResearchIT/actions/run-clang-tidy@main
8+
- uses: UoMResearchIT/actions/run-clang-tidy@0.2
99
```
1010
1111
> [!IMPORTANT]

run-clang-tidy/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
using: composite
2929
steps:
3030
- name: Install clang-tidy
31-
uses: UoMResearchIT/actions/apt-get-install@main
31+
uses: UoMResearchIT/actions/apt-get-install@0.2
3232
with:
3333
packages: clang-tidy
3434
- name: Run clang-tidy

run-pylint/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Runs pylint on a Python package.
1111
Example basic usage:
1212

1313
```yml
14-
- uses: UoMResearchIT/actions/run-pylint@main
14+
- uses: UoMResearchIT/actions/run-pylint@0.2
1515
with:
1616
package: mycode.pkg_name
1717
```
1818
1919
Example usage with spell checking:
2020
2121
```yml
22-
- uses: UoMResearchIT/actions/run-pylint@main
22+
- uses: UoMResearchIT/actions/run-pylint@0.2
2323
with:
2424
package: mycode.pkg_name
2525
language: en_GB

run-pylint/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ runs:
101101
USER_LANG: ${{ inputs.language }}
102102
- name: Install spell checker
103103
if: inputs.language != ''
104-
uses: UoMResearchIT/actions/apt-get-install@main
104+
uses: UoMResearchIT/actions/apt-get-install@0.2
105105
with:
106106
packages: enchant-2 hunspell libhunspell-dev ${{ steps.lang.outputs.pkg }}
107107
- name: Build composite dictionary

0 commit comments

Comments
 (0)