Skip to content

Commit 511b054

Browse files
committed
Update version numbers to v1.2.3
1 parent 848efb4 commit 511b054

File tree

24 files changed

+34
-29
lines changed

24 files changed

+34
-29
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ body:
4646
- "0.2"
4747
- "v0.3"
4848
- "v1.0"
49+
- "v1.1"
50+
- "v1.2"
51+
- "v1.2.1"
52+
- "v1.2.2"
53+
- "v1.2.3"
4954
- "other"
5055
default: 0
5156
- type: input

.github/workflows/add_prs_to_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# - review_requested
2222
# jobs:
2323
# call-add-prs-to-project:
24-
# uses: UoMResearchIT/Actions/.github/workflows/add_prs_to_project.yml@main
24+
# uses: UoMResearchIT/Actions/.github/workflows/add_prs_to_project.yml@v1.2.3
2525
# with:
2626
# organisation: UoMResearchIT
2727
# project_number: 123

.github/workflows/apply-reuse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
ref: ${{ inputs.ref }}
6464

6565
- name: Add copyright headers
66-
uses: UoMResearchIT/actions/reuse@v1.2.2
66+
uses: UoMResearchIT/actions/reuse@v1.2.3
6767
with:
6868
base-dir: ${{ inputs.work-dir }}
6969
extra-formats-file: ${{ inputs.work-dir }}/.extraformats
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Commit and push changes
8383
id: push
84-
uses: UoMResearchIT/actions/git-push-changes-to-branch@main
84+
uses: UoMResearchIT/actions/git-push-changes-to-branch@v1.2.3
8585
with:
8686
working-directory: ${{ inputs.work-dir }}
8787
branch-prefix: add-license-headers-to

.github/workflows/enforce-license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v6
2828
- name: Enforce
29-
uses: UoMResearchIT/actions/check-copyrights@v1.2.2
29+
uses: UoMResearchIT/actions/check-copyrights@v1.2.3
3030
with:
3131
profile: ASL

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@v1.2.1
8+
- uses: UoMResearchIT/actions/apt-get-install@v1.2.3
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@v1.2.1
12+
- uses: UoMResearchIT/actions/check-copyrights@v1.2.3
1313
with:
1414
profile: ASL
1515
```

check-ruleset-containment/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ from a standard model ruleset (the "expected" ruleset).
55

66
Example:
77
```yml
8-
- uses: UoMResearchIT/actions/get-repo-ruleset@v1.2.1
8+
- uses: UoMResearchIT/actions/get-repo-ruleset@v1.2.3
99
id: get-rules
10-
- uses: UoMResearchIT/actions/check-ruleset-containment@v1.2.1
10+
- uses: UoMResearchIT/actions/check-ruleset-containment@v1.2.3
1111
with:
1212
current: ${{ steps.get-rules.outputs.filename }}
1313
expected: project_setup/my_ruleset_file.json

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@v1.2.1
13+
- uses: UoMResearchIT/actions/commit-id@v1.2.3
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@v1.2.1
25+
- uses: UoMResearchIT/actions/commit-id@v1.2.3
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@v1.2.1
14+
- uses: UoMResearchIT/actions/compare-output@v1.2.3
1515
with:
1616
command: echo foo
1717
expected: foo

configure-nuget-for-github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This configures NuGet so that it can access the organisation namespace for packa
44

55
Example:
66
```yml
7-
- uses: UoMResearchIT/actions/configure-nuget-for-github@v1.2.1
7+
- uses: UoMResearchIT/actions/configure-nuget-for-github@v1.2.3
88
```
99
1010
# inputs

0 commit comments

Comments
 (0)