Skip to content

Commit

Permalink
Merge pull request #1589 from Automattic/dependabot/github_actions/ac…
Browse files Browse the repository at this point in the history
…tions/checkout-4

build(deps): bump actions/checkout from 3 to 4
  • Loading branch information
sjinks authored Nov 23, 2023
2 parents 56cd8bd + 113290c commit f82aee5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- { name: Check formatting, tool: 'format:check' }
steps:
- name: Check out the source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js environment
uses: actions/setup-node@v4
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js environment
uses: actions/setup-node@v4
Expand All @@ -82,7 +82,7 @@ jobs:
- current
steps:
- name: Check out the source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js environment
uses: actions/setup-node@v4
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 @@ -24,7 +24,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
2 changes: 1 addition & 1 deletion .github/workflows/devenv-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js environment
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
pull-requests: write
steps:
- name: Check out the source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run npm-prepare-release
uses: Automattic/vip-actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- run: npm i -g @automattic/vip
- run: node ./helpers/generate-docs.js > /tmp/docs.json
- name: Print docs.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
git config --global core.eol lf
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
path: vip
Expand Down

0 comments on commit f82aee5

Please sign in to comment.