Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v3.4.0 (#725)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] committed Mar 22, 2023
1 parent e8a1fa7 commit 836043e
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
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Install project dependencies
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cicd.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
- 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-dev']
fail-fast: true
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
- name: Setup Environment
uses: ./.github/actions/setup-env
with:
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
if: "github.event_name == 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')"
needs: [tests]
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Install project dependencies
Expand All @@ -107,7 +107,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@v3.3.0
- uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
- name: Setup Environment
Expand All @@ -130,7 +130,7 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PUBLISH_TOKEN }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual_release.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PUBLISH_TOKEN }}
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/checkout@v3.4.0
with:
fetch-depth: 0
persist-credentials: false
Expand Down

0 comments on commit 836043e

Please sign in to comment.