Skip to content

Commit 126ea66

Browse files
Update actions/checkout action to v5
1 parent c906296 commit 126ea66

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
java-version: '17'
2424
distribution: 'temurin'
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Setup environment
2727
run: |
2828
pip install .

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: read
1919
packages: write
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- uses: docker/setup-buildx-action@v3
2323

2424
# Login to DockerHub
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-24.04
6363
needs: build
6464
steps:
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
- uses: peter-evans/dockerhub-description@v4
6767
if: ${{ env.SHOULD_PUBLISH == 'true' }}
6868
with:

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-python@v5
1515
with:
1616
python-version: '3.x'
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Setup environment
1919
run: |
2020
pip install .[ios]

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
pypi_release:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
- name: Set up Python 3.x
1010
uses: actions/setup-python@v5
1111
with:

0 commit comments

Comments
 (0)