Skip to content
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/test-riscv-gcc-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install RISC-V GCC
uses: ./riscv-gcc-install
Expand Down
2 changes: 1 addition & 1 deletion bender-up-to-date/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
using: "composite"
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive
- name: Install bender
Expand Down
2 changes: 1 addition & 1 deletion bender-vendor-up-to-date/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
using: "composite"
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive
- name: Install bender
Expand Down
2 changes: 1 addition & 1 deletion gitlab-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ runs:
git remote add gitlab https://token:${{ inputs.token }}@${{ inputs.domain }}/${{ inputs.repo }}
git push --mirror gitlab
- name: Install uv
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.2.0
with:
version: "0.10"
python-version: 3.12
Expand Down
4 changes: 2 additions & 2 deletions integrate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ runs:
shell: bash
run: touch ./requirements.txt
- name: Install Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.9
cache: 'pip'
Expand All @@ -60,7 +60,7 @@ runs:
# PIP has very noisy, uncollapsible output, making following script output hard to read
run: pip install --disable-pip-version-check --quiet --progress-bar off requests urllib3
- name: checkout dependent
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: ${{ inputs.org }}/${{ inputs.repo }}
ref: ${{ inputs.base-ref }}
Expand Down
4 changes: 2 additions & 2 deletions lint-license/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ runs:
run: |
echo "::warning::lint-license is deprecated. Consider migrating to REUSE (https://reuse.software/) for license compliance. It is an industry standard based on SPDX identifiers and can be integrated with a single step via fsfe/reuse-action (https://github.com/fsfe/reuse-action)."
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Work around setup-python cache issue
# see https://github.com/actions/setup-python/issues/807
if: hashFiles('**/requirements.txt', '**/pyproject.toml') == ''
shell: bash
run: touch ./requirements.txt
- name: Install Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.9
cache: 'pip'
Expand Down
2 changes: 1 addition & 1 deletion slang/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
using: 'composite'
steps:
- name: Install uv
uses: astral-sh/setup-uv@v7
uses: astral-sh/setup-uv@v8.2.0
with:
version: "0.10"
python-version: 3.12
Expand Down