Skip to content

chore: Pin GitHub Actions to immutable SHA hashes #2165

chore: Pin GitHub Actions to immutable SHA hashes

chore: Pin GitHub Actions to immutable SHA hashes #2165

Workflow file for this run

name: Install Volatility3 test
on: [push, pull_request]
jobs:
install_test:
runs-on: ${{ matrix.host }}
strategy:
fail-fast: false
matrix:
host: [ ubuntu-latest, windows-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: ${{ matrix.python-version }}
- name: Setup python-pip
run: python -m pip install --upgrade pip
- name: Install volatility3
run: pip install .
- name: Run volatility3
run: vol --help