Skip to content

Commit

Permalink
Update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 8, 2024
1 parent 84e7d69 commit fc43f2e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: "Build Projects"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- run: yarn install
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
outputs:
workspaces: ${{ steps.ls_public_workspaces.outputs.workspaces }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- id: ls_public_workspaces
run: echo "::set-output name=workspaces::$(yarn node ./workspaces.js --ls-public)"
Expand All @@ -20,7 +20,7 @@ jobs:
name: "Lint Sources"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- run: yarn node ./bootstrap.js
shell: bash
Expand All @@ -41,7 +41,7 @@ jobs:
matrix:
path: ${{ fromJSON(needs.setenv.outputs.workspaces).*.path }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- run: yarn test --coverage --projects ${{ matrix.path }}
shell: bash
Expand All @@ -56,7 +56,7 @@ jobs:
name: "Run Visual Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
Expand All @@ -75,7 +75,7 @@ jobs:
matrix:
flag: ${{ fromJSON(needs.setenv.outputs.workspaces).*.name }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: ${{ matrix.flag }}_coverage_${{ github.sha }}
Expand Down

0 comments on commit fc43f2e

Please sign in to comment.