Skip to content

Commit

Permalink
Revert "Update actions to use Node 20"
Browse files Browse the repository at this point in the history
This reverts commit ac3c4e2.
  • Loading branch information
Qonfused committed Feb 8, 2024
1 parent ac3c4e2 commit da09896
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
# Upload coverage data
- name: Store coverage file
if: steps.python-pytest.outcome != 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: coverage
path: .coverage.${{ matrix.python-version }}
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
id: download
with:
name: 'coverage'
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
{{ marker }}
- name: Store Pull Request comment to be posted
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
name: python-coverage-comment-action
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
fi
working-directory: dist
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ocebuild-py${{ env.python-version }}
path: dist/*
Expand All @@ -103,7 +103,7 @@ jobs:
contents: write
steps:
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: ocebuild-py${{ env.python-version }}
path: dist
Expand All @@ -121,10 +121,7 @@ jobs:
echo "version=$(curl -s https://raw.githubusercontent.com/Qonfused/OCE-Build/main/ci/registry/project.json | jq -r '.version')" >> "$GITHUB_ENV"
- name: Upload to Release
# uses: meeDamian/[email protected]
uses: vmware-tanzu-learning/github-release@fix-deprecations
# Fixes set-env and set-output depreciation notices:
# - https://github.com/meeDamian/github-release/pull/35
uses: meeDamian/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: nightly
Expand Down

0 comments on commit da09896

Please sign in to comment.