Skip to content

Commit 56640bc

Browse files
authored
Update publish_stable.yml
1 parent 1a8f42b commit 56640bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/publish_stable.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
if: success() # Ensure this job only runs if the previous job succeeds
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
24-
ref: dev
24+
ref: master
2525
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
2626
- name: Setup Python
27-
uses: actions/setup-python@v1
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: "3.11"
3030
- name: Install Build Tools
@@ -61,12 +61,12 @@ jobs:
6161
if: success() # Ensure this job only runs if the previous job succeeds
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v2
64+
- uses: actions/checkout@v4
6565
with:
6666
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
6767
ref: master
6868
- name: Push master -> dev
6969
uses: ad-m/github-push-action@master
7070
with:
7171
github_token: ${{ secrets.GITHUB_TOKEN }}
72-
branch: dev
72+
branch: dev

0 commit comments

Comments
 (0)