Skip to content

Commit

Permalink
github: Update to the latest checkout action
Browse files Browse the repository at this point in the history
Update the actions/checkout plugin to v3.  v2 utilizes Node.js 12
and is deprecated.

	Node.js 12 actions are deprecated. Please update the following
	actions to use Node.js 16: actions/checkout@v2. For more
	information see:
	https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.1

Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
  • Loading branch information
drakenclimber committed Feb 2, 2023
1 parent f33f950 commit 3d65e3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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@v2
uses: actions/checkout@v3
- name: Initialize libseccomp
uses: ./.github/actions/setup
- name: Initialize CodeQL
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout from github
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Initialize libseccomp
uses: ./.github/actions/setup
- name: Build libseccomp
Expand All @@ -47,7 +47,7 @@ jobs:

steps:
- name: Checkout from github
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Initialize libseccomp
uses: ./.github/actions/setup
- name: Build libseccomp
Expand All @@ -66,7 +66,7 @@ jobs:

steps:
- name: Checkout from github
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Initialize libseccomp
uses: ./.github/actions/setup
- name: Run scan-build
Expand All @@ -80,7 +80,7 @@ jobs:

steps:
- name: Checkout from github
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Initialize libseccomp
uses: ./.github/actions/setup
- name: Configure libseccomp
Expand Down

0 comments on commit 3d65e3e

Please sign in to comment.