Skip to content

Commit

Permalink
ci: update actions/checkout to v4
Browse files Browse the repository at this point in the history
Proactive update to avoid deprecation warnings later on.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
  • Loading branch information
neheb committed Oct 2, 2023
1 parent a57512f commit 5fd940a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
TEST_BUILD_ALL: 1
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -39,7 +39,7 @@ jobs:
TEST_BUILD_ALL: 1
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -61,7 +61,7 @@ jobs:
TEST_BUILD_ALL: 1
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -85,7 +85,7 @@ jobs:
matrix:
platform: ['UCRT64', 'CLANG32', 'CLANG64']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
TEST_BUILD_ALL: 1
TEST_FATAL_WARNINGS: ${{ github.event.inputs.fatal_warnings }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

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:
create_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Upload release assets
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/sanity_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
Ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -27,7 +27,7 @@ jobs:
VisualStudio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -47,7 +47,7 @@ jobs:
VisualStudio-clang-cl:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
matrix:
platform: ['UCRT64', 'CLANG32', 'CLANG64']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
MacOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down

0 comments on commit 5fd940a

Please sign in to comment.