Skip to content

Commit d6f0d36

Browse files
authored
Fix spec generation action following GitHub change (#261)
* ci: update release workflow for recent GHA changes GitHub Actions are deprecating the set-output workflow command in favour of environmental files. Update the release workflow to use the new mechanism for saving output from a step. https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Fixes: #259 Signed-off-by: Joshua Lock <[email protected]> * ci: pin python-version we use to generate the published spec Some dependencies we need do not yet have wheels available for Python 3.11 which is installed by the '3.x' version selector. Signed-off-by: Joshua Lock <[email protected]> Signed-off-by: Joshua Lock <[email protected]>
1 parent 2443fba commit d6f0d36

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/draft.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5
1414
with:
15-
python-version: 3.x
15+
python-version: '3.10'
1616
cache: pip
1717

1818
- name: Clone

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5
1818
with:
19-
python-version: 3.x
19+
python-version: '3.10'
2020
cache: pip
2121

2222
- name: Ensure changes build

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5
1919
with:
20-
python-version: 3.x
20+
python-version: '3.10'
2121
cache: 'pip'
2222

2323
- name: Get previous version
2424
id: prevver
2525
run: |
2626
prev_version=`git tag | sort -V -r | head -n 1 | cut -c 2-`
27-
echo "::set-output name=prev_version::$(echo -n $prev_version)"
27+
echo "prev_version=$prev_version" >> $GITHUB_OUTPUT
2828
2929
- name: Get version
3030
id: getver
3131
run: |
3232
spec_version=`grep -oP 'VERSION \K(\d+\.\d+\.\d+)' tuf-spec.md`
33-
echo "::set-output name=spec_version::$(echo -n $spec_version)"
33+
echo "spec_version=$spec_version" >> $GITHUB_OUTPUT
3434
3535
- name: Make release
3636
if: steps.getver.outputs.spec_version != steps.prevver.outputs.prev_version

0 commit comments

Comments
 (0)