Skip to content

Commit

Permalink
GHA: Upgrade to actions/checkout v4.1.1
Browse files Browse the repository at this point in the history
Move away from the deprecated node 12.
  • Loading branch information
syncom committed Mar 7, 2024
1 parent dc8c4e9 commit 5cf83e3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-sa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
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
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
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 @@ -16,7 +16,7 @@ jobs:
#compiler_cxx: [clang++]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Install dependencies
run: |
sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [ubuntu-20.04]
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Set RELEASE_VERSION as tag version
run: |
echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
compiler_cxx: [g++, clang++]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Install dependencies
run: |
sudo apt update
Expand Down

0 comments on commit 5cf83e3

Please sign in to comment.