diff --git a/.github/workflows/test-riscv-gcc-install.yml b/.github/workflows/test-riscv-gcc-install.yml index 058bb68..b309b83 100644 --- a/.github/workflows/test-riscv-gcc-install.yml +++ b/.github/workflows/test-riscv-gcc-install.yml @@ -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 diff --git a/bender-up-to-date/action.yml b/bender-up-to-date/action.yml index b3f1752..0de47a7 100644 --- a/bender-up-to-date/action.yml +++ b/bender-up-to-date/action.yml @@ -18,7 +18,7 @@ runs: using: "composite" steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: recursive - name: Install bender diff --git a/bender-vendor-up-to-date/action.yml b/bender-vendor-up-to-date/action.yml index c4ad2ae..10e05e1 100644 --- a/bender-vendor-up-to-date/action.yml +++ b/bender-vendor-up-to-date/action.yml @@ -18,7 +18,7 @@ runs: using: "composite" steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: submodules: recursive - name: Install bender diff --git a/integrate/action.yml b/integrate/action.yml index f8f9c3e..1192cda 100644 --- a/integrate/action.yml +++ b/integrate/action.yml @@ -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' @@ -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 }} diff --git a/lint-license/action.yml b/lint-license/action.yml index f6c8190..8d30435 100644 --- a/lint-license/action.yml +++ b/lint-license/action.yml @@ -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'