Skip to content

Commit

Permalink
chore(deps): update github actions all dependencies to v4 (#45)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 31, 2023
1 parent e11cea3 commit a281f34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
triggers: ('.')
triggers_event: ('push')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
commands: |
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
using: composite
steps:
# Shallow clone is faster, but SonarCloud requires a full clone
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
repository: ${{ inputs.repository }}
Expand Down Expand Up @@ -128,7 +128,7 @@ runs:
echo "triggered=false" >> $GITHUB_OUTPUT
# Setup node and cache dir
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
if: steps.vars.outputs.triggered == 'true'
with:
node-version: ${{ inputs.node_version }}
Expand Down Expand Up @@ -181,4 +181,4 @@ runs:
# Fix - Clone for action.yml and other verifications
- name: Checkout Action repo to pass tests
if: always() && inputs.repository != github.repository
uses: actions/checkout@v3
uses: actions/checkout@v4

0 comments on commit a281f34

Please sign in to comment.