Skip to content

Commit 5f0f6ff

Browse files
committed
Version number bump
1 parent 93130f3 commit 5f0f6ff

File tree

22 files changed

+29
-29
lines changed

22 files changed

+29
-29
lines changed

.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@main
66+
uses: UoMResearchIT/actions/reuse@v1.2.1
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.1
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
29+
uses: UoMResearchIT/actions/check-copyrights@v1.2.1
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.0
8+
- uses: UoMResearchIT/actions/apt-get-install@v1.2.1
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.0
12+
- uses: UoMResearchIT/actions/check-copyrights@v1.2.1
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.0
8+
- uses: UoMResearchIT/actions/get-repo-ruleset@v1.2.1
99
id: get-rules
10-
- uses: UoMResearchIT/actions/check-ruleset-containment@v1.0
10+
- uses: UoMResearchIT/actions/check-ruleset-containment@v1.2.1
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.0
13+
- uses: UoMResearchIT/actions/commit-id@v1.2.1
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.0
25+
- uses: UoMResearchIT/actions/commit-id@v1.2.1
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.0
14+
- uses: UoMResearchIT/actions/compare-output@v1.2.1
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.0
7+
- uses: UoMResearchIT/actions/configure-nuget-for-github@v1.2.1
88
```
99
1010
# inputs

docker-publish-to-ghcr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This action does _not_ create the local image.
66
Example usage:
77

88
```yml
9-
- uses: UoMResearchIT/actions/docker-publish-to-ghcr@v1.0
9+
- uses: UoMResearchIT/actions/docker-publish-to-ghcr@v1.2.1
1010
with:
1111
source-tag: testing
1212
version: latest

download/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Downloads a file from a URL, using a cached version if possible.
44

55
Example:
66
```yml
7-
- uses: UoMResearchIT/actions/download@v1.0
7+
- uses: UoMResearchIT/actions/download@v1.2.1
88
with:
99
url: https://research-it.manchester.ac.uk/
1010
local-name: homepage.html
1111
```
1212
1313
Example of accessing a protected resource:
1414
```yml
15-
- uses: UoMResearchIT/actions/download@v1.0
15+
- uses: UoMResearchIT/actions/download@v1.2.1
1616
with:
1717
url: https://api.github.com/repo/UoMResearchIT/actions=test/contents/README.md
1818
local-name: read-me.md

0 commit comments

Comments
 (0)