diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index c980c98540..66e6d55643 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build mkdocs Docker image run: | @@ -37,13 +37,13 @@ jobs: sudo chown -R $(id -u):$(id -g) ./out - name: Check GitHub Pages status - uses: crazy-max/ghaction-github-status@v2 + uses: crazy-max/ghaction-github-status@v4 with: pages_threshold: major_outage - name: Deploy if: github.event_name != 'pull_request' && endsWith(github.ref, github.event.repository.default_branch) - uses: crazy-max/ghaction-github-pages@v2 + uses: crazy-max/ghaction-github-pages@v4 with: repo: librenms/docs.librenms.org target_branch: main diff --git a/.github/workflows/label-actions.yml b/.github/workflows/label-actions.yml index bdb1a2f585..cf3e50b49c 100644 --- a/.github/workflows/label-actions.yml +++ b/.github/workflows/label-actions.yml @@ -18,4 +18,4 @@ jobs: action: runs-on: ubuntu-latest steps: - - uses: dessant/label-actions@v2 + - uses: dessant/label-actions@v4 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 01410b557c..63e84dd92b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up PHP @@ -63,7 +63,7 @@ jobs: - name: Cache composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/composer.lock') }} @@ -71,7 +71,7 @@ jobs: - name: Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/requirements.txt') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4d1b536cca..cdd065ab26 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,7 +56,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - @@ -86,7 +86,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/composer.lock') }} @@ -94,7 +94,7 @@ jobs: ${{ runner.os }}-composer-${{ secrets.CACHE_VERSION }}- - name: Cache pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/requirements.txt') }}