Skip to content

Commit

Permalink
Use version instead of digest for actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
manicmaniac committed Nov 30, 2024
1 parent 4e7f1e3 commit b9add93
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
benchmark:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build-sdist:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
Expand All @@ -40,7 +40,7 @@ jobs:
- 'pypy-3.9'
- 'pypy-3.10'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
Expand All @@ -67,7 +67,7 @@ jobs:
- pp38-pypy38_pp73
- pp39-pypy39_pp73
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/checkout@v4
- run: /opt/python/${{ matrix.python-version }}/bin/pip wheel .
- run: auditwheel repair arc4-*-linux*.whl --plat manylinux_2_28_x86_64
- uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- 'pypy-3.9'
- 'pypy-3.10'
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/checkout@v4
- name: clang-format
run: clang-format --Werror --dry-run arc4.c
- run: pip install . flake8 mypy pygments restructuredtext_lint
Expand Down

0 comments on commit b9add93

Please sign in to comment.