Skip to content

Commit b53be72

Browse files
committed
README.md: bump versions
1 parent a06a81a commit b53be72

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
1212

13-
- uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
13+
uses: actions/checkout@v6
1414
with:
1515
node-version-file: ".tool-versions"
1616
cache: "npm"

CHANGELOG.md

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

221221
## 0.1.12
222222

223-
- 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)
223+
- 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)
224224

225225
## 0.1.11
226226

@@ -237,7 +237,7 @@
237237
## 0.1.8
238238

239239
- 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)
240-
- 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)
240+
- 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)
241241
- trim white space in provided `tag_name` [#130](https://github.com/softprops/action-gh-release/pull/130)
242242

243243
## 0.1.7
@@ -252,10 +252,10 @@ This is a release catch up have a hiatus. Future releases will happen more frequ
252252

253253
- 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)
254254
- Add `repository` input, useful for creating a release in an external repository [#61](https://github.com/softprops/action-gh-release/pull/61)
255-
- 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)
255+
- 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)
256256
- Add `upload_url` as action output, useful for managing uploads separately [#75](https://github.com/softprops/action-gh-release/pull/75)
257257
- Support custom `target_commitish` value, useful to customize the default [#76](https://github.com/softprops/action-gh-release/pull/76)
258-
- 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)
258+
- 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)
259259
- 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)
260260
- 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)
261261

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

268268
- Added support for updating releases body [#36](https://github.com/softprops/action-gh-release/pull/36)
269269
- 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)
270-
- Added basic GitHub API retry support to manage API turbulance [#26](https://github.com/softprops/action-gh-release/pull/26)
270+
- Added basic GitHub API retry support to manage API turbulence [#26](https://github.com/softprops/action-gh-release/pull/26)
271271

272272
## 0.1.3
273273

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
- name: Release
5656
uses: softprops/action-gh-release@v2
5757
if: github.ref_type == 'tag'
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
- name: Release
7777
uses: softprops/action-gh-release@v2
7878
```
@@ -99,7 +99,7 @@ jobs:
9999
runs-on: ubuntu-latest
100100
steps:
101101
- name: Checkout
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103
- name: Build
104104
run: echo ${{ github.sha }} > Release.txt
105105
- name: Test
@@ -123,7 +123,7 @@ jobs:
123123
runs-on: ubuntu-latest
124124
steps:
125125
- name: Checkout
126-
uses: actions/checkout@v5
126+
uses: actions/checkout@v6
127127
- name: Build
128128
run: echo ${{ github.sha }} > Release.txt
129129
- name: Test
@@ -157,7 +157,7 @@ jobs:
157157
runs-on: ubuntu-latest
158158
steps:
159159
- name: Checkout
160-
uses: actions/checkout@v5
160+
uses: actions/checkout@v6
161161
- name: Generate Changelog
162162
run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt
163163
- name: Release

0 commit comments

Comments
 (0)