Skip to content

Commit

Permalink
Merge pull request #458 from rackerlabs/renovate/pin-dependencies
Browse files Browse the repository at this point in the history
chore(deps): pin dependencies
  • Loading branch information
renovate[bot] authored Nov 11, 2024
2 parents 1fc8e9a + 94c26f6 commit 633c7bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-ironic-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: ls -la artifacts

- name: Save artifacts for next job
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: image-artifacts
path: ironic-images/artifacts/
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
run: echo "TIMESTAMP=$(git show --no-patch --no-notes --pretty='%cd' --date=format:'%Y%m%d%H%M%S' ${{ github.sha }})" >> $GITHUB_ENV

- name: Download artifacts from previous job
uses: actions/download-artifact@v4
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: image-artifacts
path: ironic-images/artifacts
Expand All @@ -144,6 +144,6 @@ jobs:

steps:
- name: Clean up artifacts
uses: geekyeggo/delete-artifact@v5
uses: geekyeggo/delete-artifact@f275313e70c08f6120db482d7a6b98377786765b # v5
with:
name: image-artifacts
6 changes: 3 additions & 3 deletions .github/workflows/code-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- run: poetry install --sync --with test
- run: poetry build
- run: "poetry run pytest --cov --cov-report xml:coverage.xml"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: coverage-${{ matrix.project }}
path: python/${{ matrix.project }}/coverage.xml
Expand All @@ -54,13 +54,13 @@ jobs:
needs: python
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
pattern: coverage-*
merge-multiple: true
- run: |
npx cobertura-merge-globby -o output.xml --files=python/**/coverage.xml
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
with:
name: coverage.xml
path: coverage.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
with:
name: coverage.xml
run-id: ${{ github.event.workflow_run.id }}
Expand Down

0 comments on commit 633c7bf

Please sign in to comment.