Skip to content

Commit

Permalink
GitHub Actions: upgrade third-party actions to latest (#113)
Browse files Browse the repository at this point in the history
* ci: actions/checkout@v4

* ci: actions/setup-node@v4

* ci: stefanzweifel/git-auto-commit-action@v5
  • Loading branch information
satelllte authored Nov 24, 2023
1 parent 507938f commit 061d03a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
working-directory: ./generator
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: "./generator/.nvmrc"
- name: Install
Expand All @@ -37,9 +37,9 @@ jobs:
working-directory: ./generator
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: "./generator/.nvmrc"
- name: Install
Expand All @@ -61,14 +61,14 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Download README.md file artifact
uses: actions/download-artifact@v3
with:
name: readme-artifact
path: .
- name: Commit generated README.md file
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update README.md
file_pattern: ./README.md

0 comments on commit 061d03a

Please sign in to comment.