Skip to content

Commit eba835e

Browse files
committed
README.md: bump versions
1 parent c9b46fe commit eba835e

File tree

6 files changed

+830
-1076
lines changed

6 files changed

+830
-1076
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
# https://github.com/actions/checkout
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v6
1212
- name: Install
1313
run: npm ci
1414
- name: Build

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## 0.1.12
1616

17-
- fix bug leading to empty strings subsituted for inputs users don't provide breaking api calls [#144](https://github.com/softprops/action-gh-release/pull/144)
17+
- fix bug leading to empty strings substituted for inputs users don't provide breaking api calls [#144](https://github.com/softprops/action-gh-release/pull/144)
1818

1919
## 0.1.11
2020

@@ -31,7 +31,7 @@
3131
## 0.1.8
3232

3333
- address recent warnings in assert upload api as well as introduce asset upload overrides, allowing for multiple runs for the same release with the same named asserts [#134](https://github.com/softprops/action-gh-release/pull/134)
34-
- fix backwards compatibility with `GITHUB_TOKEN` resolution. `GITHUB_TOKEN` is no resolved first from an env varibale and then from and input [#133](https://github.com/softprops/action-gh-release/pull/133)
34+
- fix backwards compatibility with `GITHUB_TOKEN` resolution. `GITHUB_TOKEN` is no resolved first from an env variable and then from and input [#133](https://github.com/softprops/action-gh-release/pull/133)
3535
- trim white space in provided `tag_name` [#130](https://github.com/softprops/action-gh-release/pull/130)
3636

3737
## 0.1.7
@@ -46,10 +46,10 @@ This is a release catch up have a hiatus. Future releases will happen more frequ
4646

4747
- Add 'fail_on_unmatched_files' input, useful for catching cases were your `files` input does not actually match what you expect [#55](https://github.com/softprops/action-gh-release/pull/55)
4848
- Add `repository` input, useful for creating a release in an external repository [#61](https://github.com/softprops/action-gh-release/pull/61)
49-
- Add release `id` to outputs, useful for refering to release in workflow steps following the step that uses this action [#60](https://github.com/softprops/action-gh-release/pull/60)
49+
- Add release `id` to outputs, useful for referring to release in workflow steps following the step that uses this action [#60](https://github.com/softprops/action-gh-release/pull/60)
5050
- Add `upload_url` as action output, useful for managing uploads separately [#75](https://github.com/softprops/action-gh-release/pull/75)
5151
- Support custom `target_commitish` value, useful to customize the default [#76](https://github.com/softprops/action-gh-release/pull/76)
52-
- fix `body_path` input first then fall back on `body` input. this was the originally documented precedence but was implemened the the opposite order! [#85](https://github.com/softprops/action-gh-release/pull/85)
52+
- fix `body_path` input first then fall back on `body` input. this was the originally documented precedence but was implemented the the opposite order! [#85](https://github.com/softprops/action-gh-release/pull/85)
5353
- Retain original release info if the keys are not set, useful for filling in blanks for a release you've already started separately [#109](https://github.com/softprops/action-gh-release/pull/109)
5454
- Limit number of times github api request to create a release is retried, useful for avoiding eating up your rate limit and action minutes do to either an invalid token or other circumstance causing the api call to fail [#111](https://github.com/softprops/action-gh-release/pull/111)
5555

@@ -61,7 +61,7 @@ This is a release catch up have a hiatus. Future releases will happen more frequ
6161

6262
- Added support for updating releases body [#36](https://github.com/softprops/action-gh-release/pull/36)
6363
- Steps can now access the url of releases with the `url` output of this Action [#28](https://github.com/softprops/action-gh-release/pull/28)
64-
- Added basic GitHub API retry support to manage API turbulance [#26](https://github.com/softprops/action-gh-release/pull/26)
64+
- Added basic GitHub API retry support to manage API turbulence [#26](https://github.com/softprops/action-gh-release/pull/26)
6565

6666
## 0.1.3
6767

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v6
4545
- name: Release
46-
uses: softprops/action-gh-release@v1
46+
uses: softprops/action-gh-release@v2
4747
if: startsWith(github.ref, 'refs/tags/')
4848
```
4949
@@ -62,9 +62,9 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- name: Checkout
65-
uses: actions/checkout@v3
65+
uses: actions/checkout@v6
6666
- name: Release
67-
uses: softprops/action-gh-release@v1
67+
uses: softprops/action-gh-release@v2
6868
```
6969
7070
### ⬆️ Uploading release assets
@@ -88,13 +88,13 @@ jobs:
8888
runs-on: ubuntu-latest
8989
steps:
9090
- name: Checkout
91-
uses: actions/checkout@v3
91+
uses: actions/checkout@v6
9292
- name: Build
9393
run: echo ${{ github.sha }} > Release.txt
9494
- name: Test
9595
run: cat Release.txt
9696
- name: Release
97-
uses: softprops/action-gh-release@v1
97+
uses: softprops/action-gh-release@v2
9898
if: startsWith(github.ref, 'refs/tags/')
9999
with:
100100
files: Release.txt
@@ -112,13 +112,13 @@ jobs:
112112
runs-on: ubuntu-latest
113113
steps:
114114
- name: Checkout
115-
uses: actions/checkout@v3
115+
uses: actions/checkout@v6
116116
- name: Build
117117
run: echo ${{ github.sha }} > Release.txt
118118
- name: Test
119119
run: cat Release.txt
120120
- name: Release
121-
uses: softprops/action-gh-release@v1
121+
uses: softprops/action-gh-release@v2
122122
if: startsWith(github.ref, 'refs/tags/')
123123
with:
124124
files: |
@@ -146,11 +146,11 @@ jobs:
146146
runs-on: ubuntu-latest
147147
steps:
148148
- name: Checkout
149-
uses: actions/checkout@v3
149+
uses: actions/checkout@v6
150150
- name: Generate Changelog
151151
run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt
152152
- name: Release
153-
uses: softprops/action-gh-release@v1
153+
uses: softprops/action-gh-release@v2
154154
if: startsWith(github.ref, 'refs/tags/')
155155
with:
156156
body_path: ${{ github.workspace }}-CHANGELOG.txt

0 commit comments

Comments
 (0)