Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dattasaurabh82 committed Feb 6, 2025
2 parents 0ae977b + 84bc52b commit ccc4602
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create_ibom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Update System and install sys necessities
run: |
sudo apt-get update -y
sudo apt-get install -y software-properties-common xvfb
sudo apt-get install -y software-properties-common xvfb libnotify4
sudo apt-get install -y libsdl2-2.0-0
- name: Set up Python 3.8
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
sudo xvfb-run --auto-servernum --server-args "-screen 0 1024x768x24" python3 InteractiveHtmlBom/InteractiveHtmlBom/generate_interactive_bom.py --no-browser $ARGS $JSON_PATH --dest-dir $OUTPUT_PATH
- name: upload html
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: html_file
path: output
Expand All @@ -62,10 +62,10 @@ jobs:
runs-on: ubuntu-20.04
needs: build
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Download build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: html_file
path: output
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Runs a single command using the runners shell
- name: Rtest paths and contents
Expand Down

0 comments on commit ccc4602

Please sign in to comment.