Skip to content

Commit ddff2f6

Browse files
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b67ba11 commit ddff2f6

File tree

4 files changed

+4
-4
lines changed

4 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@v3
41+
uses: actions/checkout@v4
4242

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

.github/workflows/dependency-submission-example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: 'Checkout Repository'
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- uses: actions/setup-node@v3
1515
# As of 2023-02-22, the ubuntu-latest image uses npm v8.3.1. This version
1616
# has a bug that prevents loading dependency-submission-toolkit in the

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout the project
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
- name: Use Node.js 16.x (LTS)
1414
uses: actions/setup-node@v3
1515
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build: # make sure build/ci work properly
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
# As of 2023-02-22, the ubuntu-latest image uses npm v8.3.1. This version
1818
# has a bug that prevents loading dependency-submission-toolkit in the
1919
# 'example/' project. npm v8.4.1 (same version in Codespace created on

0 commit comments

Comments
 (0)