Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Nov 1, 2023
1 parent b18499e commit 79cc6a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Install project dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Install project dependencies
Expand All @@ -34,7 +34,7 @@ jobs:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
fail-fast: true
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: Setup Environment
uses: ./.github/actions/setup-env
with:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
if: "github.event_name == 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')"
needs: [tests]
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Install project dependencies
Expand All @@ -113,7 +113,7 @@ jobs:
# Dry run check does not need to wait for others
if: github.event_name == 'pull_request' && github.event.pull_request.head.ref == 'next' && !contains(github.event.head_commit.message, '[skip ci]')
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Setup Environment
Expand All @@ -136,7 +136,7 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PUBLISH_TOKEN }}
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PUBLISH_TOKEN }}
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
persist-credentials: false
Expand Down

1 comment on commit 79cc6a2

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 79cc6a2 Previous: 8d25bcb Ratio
benchmarks/test_1000x.py::test_1000x_reads 0.7971335193431611 iter/sec (stddev: 0.055334328621363095) 0.6580955320933429 iter/sec (stddev: 0.08976676079589042) 0.83
benchmarks/test_1000x.py::test_1000x_writes 0.7731102993945369 iter/sec (stddev: 0.06697320711468518) 0.656088078409481 iter/sec (stddev: 0.08943095054187161) 0.85
benchmarks/test_standard.py::test_standard 0.7684654470438637 iter/sec (stddev: 0.06573902667561704) 0.6288748095449058 iter/sec (stddev: 0.0970910120591689) 0.82

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.