Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit c6c11d0

Browse files
Merge pull request #11 from PythonCoderAS/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
2 parents 262ca77 + ddb7391 commit c6c11d0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v3
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
1717
node-version: 16
@@ -23,7 +23,7 @@ jobs:
2323
needs: build
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
- uses: actions/setup-node@v3
2828
with:
2929
node-version: 16

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-node@v3
2121
with:
2222
node-version: '${{ matrix.node }}'
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
- name: Install Dependencies
2525
run: npm ci
2626
- name: Run All Node.js Tests

0 commit comments

Comments
 (0)