Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #629

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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/spectral-action@v0.8.10
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