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

Update actions/checkout action to v4.1.7 #356

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected].6
- uses: actions/[email protected].7
- 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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
uses: actions/[email protected].7
with:
path: s2e-core
repository: ut-issl/s2e-core
ref: '${{ env.S2E_CORE_VERSION }}'
fetch-depth: 1

- name: checkout S2E user
uses: actions/[email protected].6
uses: actions/[email protected].7
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/[email protected].6
uses: actions/[email protected].7
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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
- uses: actions/[email protected].7
- 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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
- uses: actions/[email protected].7
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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
- uses: actions/[email protected].7

- 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/[email protected].6
- uses: actions/[email protected].7
- uses: actions/[email protected]

- name: install
Expand Down
Loading