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

Fix CI action warnings #9794

Merged
merged 1 commit into from Apr 28, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
Expand All @@ -33,9 +33,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
Expand All @@ -50,9 +50,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
Expand All @@ -67,9 +67,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Zip demo build
run: zip demo-build.zip -r examples/demo/dist examples/demo/package.json
- name: Upload demo build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: demo-build
path: demo-build.zip
Expand All @@ -96,9 +96,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
Expand All @@ -118,7 +118,7 @@ jobs:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 2 # Fetch HEAD^ to enable git comparison
- name: Download demo build
Expand All @@ -142,9 +142,9 @@ jobs:
if: success() && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/next')
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: bahmutov/npm-install@v1
Expand Down