Skip to content

Commit 296e73f

Browse files
committed
Update all GitHub actions and always use their latest non-breaking version
1 parent 505e183 commit 296e73f

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/broken-links-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- name: Check for broken links
1212
id: link-report
13-
uses: celinekurpershoek/link-checker@v1.0.1
13+
uses: celinekurpershoek/link-checker@v1
1414
with:
1515
url: 'https://react-ui.io'
1616
honorRobotExclusions: false

.github/workflows/git.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99

1010
steps:
1111
- name: Block merge with autosquash commits
12-
uses: xt0rted/block-autosquash-commits-action@v2.0.0
12+
uses: xt0rted/block-autosquash-commits-action@v2
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pull-request-meta.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Assign to author
13-
uses: samspills/[email protected]
13+
uses: samspills/[email protected] # specify also the minor version because v1 does not exist
1414
with:
15-
repo-token: '${{ secrets.GITHUB_TOKEN }}'
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
1616

1717
- name: Add labels
18-
uses: TimonVS/pr-labeler-action@v3.1.0
18+
uses: TimonVS/pr-labeler-action@v4
1919
env:
20-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release-management.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Check package.json for version change
3333
id: check_package_version
34-
uses: EndBug/version-check@v2.1.0
34+
uses: EndBug/version-check@v2
3535

3636
- name: Log when version changed
3737
if: steps.check_package_version.outputs.changed == 'true'
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-20.04
5555
steps:
5656
- name: Draft release on GitHub
57-
uses: release-drafter/release-drafter@v5.19.0
57+
uses: release-drafter/release-drafter@v5
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060

@@ -72,7 +72,7 @@ jobs:
7272
# `build_and_test` job first so this job is skipped rather than exited with an error.
7373
- name: Publish matching GitHub release draft
7474
id: github_release
75-
uses: JamesMGreene/node-draft-releaser@v1.1.2
75+
uses: JamesMGreene/node-draft-releaser@v1
7676
env:
7777
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7878
with:
@@ -125,7 +125,7 @@ jobs:
125125
path: docs
126126

127127
- name: Deploy docs to GitHub Pages
128-
uses: JamesIves/github-pages-deploy-action@v4.3.3
128+
uses: JamesIves/github-pages-deploy-action@v4
129129
with:
130130
folder: docs # Must match the name of the artifact used.
131131
repository-name: react-ui-org/react-ui-docs

0 commit comments

Comments
 (0)