Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/checkout action to v4 #850

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
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 @@ -35,7 +35,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
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules (Playground)
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules (Docs)
uses: actions/cache@v3
id: cache
Expand All @@ -77,7 +77,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache docs/node_modules
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
run: |
docker pull sitespeedio/sitespeed.io:20.0.0
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Start throttle 3g
run: |
npm install @sitespeed.io/throttle -g
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: cache node_modules
uses: actions/cache@v3
id: cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: cache node_modules
uses: actions/cache@v3
Expand Down