diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5299aa5..73069ba 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Build the container run: docker build -f test/Dockerfile . -t sitespeedio/throttle - name: Test Throttle diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 0b44f0c..c30e3e2 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [20.x] + node-version: [24.x] steps: - name: Install throttle run: npm install @sitespeed.io/throttle -g @@ -21,5 +21,5 @@ jobs: run: sudo ip r - name: Show version run: throttle --version - - name: Test cable + - name: Test cable run: throttle cable \ No newline at end of file diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1c0b73a..9f0e4e9 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -13,9 +13,9 @@ jobs: matrix: node-version: [20.x, 22.x, 24.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: Install throttle diff --git a/.github/workflows/osx.yml b/.github/workflows/osx.yml index de87580..64eb041 100644 --- a/.github/workflows/osx.yml +++ b/.github/workflows/osx.yml @@ -10,9 +10,9 @@ jobs: build: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: '20.x' - name: Install dependencies