Skip to content

Commit 5c52bdd

Browse files
authored
docs(README): use latest versions of GitHub actions (#574)
1 parent bc2d065 commit 5c52bdd

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/export-labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# This is needed if you're dealing with private repos.
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515

16-
# Set this to `true` if you want to get the raw API reponse. Defaults to `false`.
16+
# Set this to `true` if you want to get the raw API response. Defaults to `false`.
1717
raw-result: false
1818

1919
# By default every label entry will have an `aliases` property set to an empty array.

CONTRIBUTING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ If you want to contribute to this project, check out this steps!
66
2. Either [open a new issue](https://github.com/EndBug/add-and-commit/issues/new/choose) or comment on an existing one to let everyone know what you're working on.
77
3. Edit the source files to implement your feature or fix.
88
4. Build the action and test it in a test repo.
9-
5. Update the [action manifest](./action.yml) AND the [README](./README.md) with your changes.
9+
5. Update the [action manifest](./action.yml) AND the [README](./README.md) with your changes.
1010
6. [Open a PR](https://github.com/EndBug/add-and-commit/compare).
1111

1212
Thanks! 💖
13-

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ If you want to make some changes, you have to checkout the branch the PR is comi
166166
You can set it up like this:
167167

168168
```yaml
169-
- uses: actions/checkout@v3
169+
- uses: actions/checkout@v4
170170
with:
171171
repository: ${{ github.event.pull_request.head.repo.full_name }}
172172
ref: ${{ github.event.pull_request.head.ref }}
@@ -269,10 +269,10 @@ jobs:
269269
runs-on: ubuntu-latest
270270
steps:
271271
- name: Checkout repo
272-
uses: actions/checkout@v3
272+
uses: actions/checkout@v4
273273
274274
- name: Set up Node.js
275-
uses: actions/setup-node@v3
275+
uses: actions/setup-node@v4
276276
277277
- name: Install dependencies
278278
run: npm install
@@ -304,7 +304,7 @@ jobs:
304304
305305
steps:
306306
# If you need to, you can check out your repo to a different location
307-
- uses: actions/checkout@v3
307+
- uses: actions/checkout@v4
308308
with:
309309
path: './pathToRepo/'
310310

0 commit comments

Comments
 (0)