Merge pull request #2051 from github/angelapwen/patch-release-script · github/codeql-action@40cb08c (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit 40cb08c
Merge pull request #2051 from github/angelapwen/patch-release-script
Fix type error in `Update release branch` workflow
File tree
1 file changed
lines changed
- .github/actions/release-branches
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -13,7 +13,7 @@ | ||
13 | 13 | with open(os.path.join(grandparent_dir, 'releases.ini')) as stream: |
14 | 14 | config.read_string('[default]\n' + stream.read()) |
15 | 15 | |
16 | -OLDEST_SUPPORTED_MAJOR_VERSION = config['default']['OLDEST_SUPPORTED_MAJOR_VERSION'] | |
16 | +OLDEST_SUPPORTED_MAJOR_VERSION = int(config['default']['OLDEST_SUPPORTED_MAJOR_VERSION']) | |
17 | 17 | |
18 | 18 | def main(): |
19 | 19 |