Skip to content

Commit

Permalink
Merge pull request #374 from arkedge/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
chore(deps): update actions/checkout action to v4.2.2
  • Loading branch information
sksat authored Oct 23, 2024
2 parents 72cb16b + 605e637 commit caa8d4c
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: reviewdog/action-actionlint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_as_cxx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- subobc

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- name: setup
shell: cmd
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_with_s2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@ jobs:

steps:
- name: checkout S2E core
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
path: s2e-core
repository: ut-issl/s2e-core
ref: '${{ env.S2E_CORE_VERSION }}'
fetch-depth: 1

- name: checkout S2E user
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
path: s2e-user
repository: ut-issl/s2e-user-for-c2a-core
ref: ae-v3.0.0 # TODO: import s2e-user-for-c2a-core to c2a-core
fetch-depth: 1

- name: checkout C2A user
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
path: c2a-core

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_code_generation.yml
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@v4.1.7
- uses: actions/checkout@v4.2.2

- name: prepare code-generator settings
working-directory: ./code-generator
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_encoding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check_encoding:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: actions/[email protected]
with:
python-version-file: .github/workflows/.python-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
sudo apt-get update -y
sudo apt install -y doxygen graphviz
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- name: C2A setup
run: ./setup.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- name: Run Labeler
uses: crazy-max/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_check_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
black_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- name: install black formatter
run: pip install black==23.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
flake8_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- name: Set up python environment
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- name: install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2

- uses: pnpm/[email protected]
with:
Expand Down

0 comments on commit caa8d4c

Please sign in to comment.