Skip to content

Commit

Permalink
ci: update deprecated actions/checkout
Browse files Browse the repository at this point in the history
* older versions use deprecated versions of node

Signed-off-by: Goetz Goerisch <g.goerisch@vdw.de>
  • Loading branch information
GoetzGoerisch committed Nov 7, 2024
1 parent e96b019 commit 7a47372
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Packages (cpp)
if: ${{ matrix.language == 'cpp' }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
compiler: [gcc, clang]
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand All @@ -32,7 +32,7 @@ jobs:
if: "!contains(github.ref, 'coverity_scan')"
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand All @@ -53,7 +53,7 @@ jobs:
if: "!contains(github.ref, 'coverity_scan')"
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand All @@ -77,7 +77,7 @@ jobs:
docker_image: [ubuntu-20.04, ubuntu-22.04-mbedtls-3.1]
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand All @@ -98,7 +98,7 @@ jobs:
if: "!contains(github.ref, 'coverity_scan')"
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand All @@ -119,7 +119,7 @@ jobs:
if: "!contains(github.ref, 'coverity_scan')"
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand All @@ -140,7 +140,7 @@ jobs:
if: "!contains(github.ref, 'coverity_scan')"
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Launch Action
Expand All @@ -160,7 +160,7 @@ jobs:
if: contains(github.ref, 'coverity_scan')
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: fix-sanitizer
Expand Down

0 comments on commit 7a47372

Please sign in to comment.