Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 4, 2023
1 parent 6d5207f commit b2bc087
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/abicheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout HSE
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Checkout HSE
if: ${{ steps.to-skip.outputs.skip == 'false' }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Determine branches
id: determine-branches
Expand Down Expand Up @@ -149,15 +149,15 @@ jobs:
- name: Checkout hse-java
if: ${{ steps.to-skip.outputs.skip == 'false' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hse-project/hse-java
path: subprojects/hse-java
ref: ${{ steps.determine-branches.outputs.hse-java }}

- name: Checkout hse-python
if: ${{ steps.to-skip.outputs.skip == 'false' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hse-project/hse-python
path: subprojects/hse-python
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:

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

- name: Cache Meson packagecache
uses: actions/cache@v3
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:

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

- name: Cache Meson packagecache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checkoss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: checkoss
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

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

- name: Run clang-format
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

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

- name: Cache Meson packagecache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

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

- name: Cache Meson packagecache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

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

- name: Cache Meson packagecache
uses: actions/cache@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

steps:
- name: Checkout HSE
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

Expand Down Expand Up @@ -91,14 +91,14 @@ jobs:
done
- name: Checkout hse-java
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hse-project/hse-java
path: subprojects/hse-java
ref: ${{ steps.determine-branches.outputs.hse-java }}

- name: Checkout hse-python
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: hse-project/hse-python
path: subprojects/hse-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest

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

- uses: stoplightio/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reuse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout HSE
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint
uses: fsfe/reuse-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
image: fedora:36

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

- name: Initialize
run: |
Expand Down

0 comments on commit b2bc087

Please sign in to comment.