Skip to content

Commit

Permalink
fix(github-actions): Update versions of GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
vinsonchuong committed Sep 15, 2024
1 parent 1b80793 commit a3445a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ jobs:
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
Expand Down
4 changes: 2 additions & 2 deletions src/templates/ci-action.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default function ({branchName}) {
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
Expand Down
4 changes: 2 additions & 2 deletions src/templates/dependabot-action.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export default function () {
if: \${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: \${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: latest
cache: yarn
Expand Down

0 comments on commit a3445a5

Please sign in to comment.