Skip to content

Commit

Permalink
Upgraded the version of the actions/checkout action being used in GitHub
Browse files Browse the repository at this point in the history
CI workflows.
  • Loading branch information
mdadams committed Feb 4, 2024
1 parent 0cd594d commit 2d03945
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
############################################################
- name: prebuild
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
############################################################
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
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 @@ -17,7 +17,7 @@ jobs:
steps:
############################################################
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
############################################################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/win_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- name: testing
shell: bash
run: build/build --debug-level 10 --shared --test --verbose

0 comments on commit 2d03945

Please sign in to comment.