Skip to content

Bump actions/checkout from 1 to 4 in the github-actions group #766

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 12 additions & 28 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,11 @@ jobs:
name: Ubuntu 22.04 x86_64
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
tags: true
fetch-depth: 0

- name: Install pip
run: sudo apt-get install -y python3-pip
Expand Down Expand Up @@ -91,15 +87,11 @@ jobs:
pypi_arch: manylinux2014_aarch64

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
tags: true
fetch-depth: 0

- name: Install pip
run: sudo apt-get install -y python3-pip
Expand Down Expand Up @@ -142,15 +134,11 @@ jobs:
wheel_arch: 11_0_arm64
runs_on: macos-14
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
tags: true
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -197,15 +185,11 @@ jobs:
wheel_arch: win_amd64

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
tags: true
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
Expand Down
Loading