Skip to content

Commit

Permalink
updating actions/checkout in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ShutdownRepo committed Apr 12, 2024
1 parent 62e1acb commit dc270ef
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/entrypoint_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write
needs: test
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: true
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/entrypoint_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: false
- name: Set up Python
Expand All @@ -47,7 +47,7 @@ jobs:
if: github.event.pull_request.draft == false
needs: code_test
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: true
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/entrypoint_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: true
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/entrypoint_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id-token: write
needs: test
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: true
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sub_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Code testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: false
- name: Set up Python
Expand All @@ -34,7 +34,7 @@ jobs:
version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [win32, linux, darwin]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
with:
submodules: false
- name: Set up Python
Expand Down

0 comments on commit dc270ef

Please sign in to comment.