Skip to content

Commit e1ad782

Browse files
Merge pull request #4 from joergschultzelutter/3-update-workflow-to-latest-github-action-versions
Github Actions updates to latest versions (--> NodeJS 20)
2 parents 658d309 + b11ac7c commit e1ad782

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

publish-to-pypi.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292

9393
steps:
9494
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
95-
- uses: actions/checkout@v3.5.3
95+
- uses: actions/checkout@v4
9696

9797
# Read source file
9898
- name: Read source file
@@ -103,7 +103,7 @@ jobs:
103103
# Run regex on content and try to get the version data
104104
- name: get version via regex
105105
id: regex
106-
uses: kaisugi/action-regex-match@v1.0.0
106+
uses: kaisugi/action-regex-match@v1.0.1
107107
with:
108108
regex: ${{ env.REGEX_PATTERN }}
109109
flags: 'gim'
@@ -112,7 +112,7 @@ jobs:
112112
# Cancellation will have no immediate effect!!!
113113
- name: Cancel build if version not found
114114
if: ${{ steps.regex.outputs.match == '' }}
115-
uses: andymckay/cancel-action@0.3
115+
uses: andymckay/cancel-action@0.4
116116
# Execute sleep if cancellation was triggered
117117
- name: Sleep if build was cancelled
118118
if: ${{ steps.regex.outputs.match == '' }}
@@ -123,7 +123,7 @@ jobs:
123123
# assigned by Github; only if you tag a release, this value will be 'tag'
124124
- name: Cancel build if Github reference is not equal to tag
125125
if: ${{ github.ref_type != 'tag' }}
126-
uses: andymckay/cancel-action@0.3
126+
uses: andymckay/cancel-action@0.4
127127
# Execute sleep if cancellation was triggered
128128
- name: Sleep if build was cancelled
129129
if: ${{ github.ref_type != 'tag' }}
@@ -133,7 +133,7 @@ jobs:
133133
# Cancel the work flow if assessment is not true
134134
- name: Cancel build if Github refname is not equal to Python version
135135
if: ${{ github.ref_name != steps.regex.outputs.group1 }}
136-
uses: andymckay/cancel-action@0.3
136+
uses: andymckay/cancel-action@0.4
137137
# Execute sleep if cancellation was triggered
138138
- name: Sleep if build was cancelled
139139
if: ${{ github.ref_name != steps.regex.outputs.group1 }}
@@ -159,7 +159,7 @@ jobs:
159159

160160
steps:
161161

162-
- uses: actions/checkout@v3.5.3
162+
- uses: actions/checkout@v4
163163
# Set up Python environment
164164
- name: Set up Python
165165
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)