Skip to content

Commit

Permalink
Merge pull request #83 from roots/dependabot/github_actions/examples/…
Browse files Browse the repository at this point in the history
…actions/checkout-4

Bump actions/checkout from 2 to 4 in /examples
  • Loading branch information
swalkinshaw authored Dec 14, 2023
2 parents 87341a6 + c0fe81e commit 717e132
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.TRELLIS_DEPLOY_SSH_PRIVATE_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions examples/multi-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: site
- uses: actions/setup-node@v4
with:
node-version: '16'
cache: yarn
cache-dependency-path: site/web/app/themes/sage/yarn.lock
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
repository: example/example.com
path: trellis
Expand Down
2 changes: 1 addition & 1 deletion examples/sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
Expand Down

0 comments on commit 717e132

Please sign in to comment.