From 80f4b2c592ce9b1386669194b44bb7f71221e84f Mon Sep 17 00:00:00 2001 From: Chris Fiege Date: Thu, 25 Apr 2024 09:22:03 +0200 Subject: [PATCH] github-workflows: Bump Workflow Versions Our workflows start to issue deprecation warnings. See for example here: https://github.com/pengutronix/flamingo/actions/runs/8827878412 This change bumps the used workflows to the most recent mayor version. Signed-off-by: Chris Fiege --- .github/workflows/ci.yaml | 2 +- .github/workflows/docs.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4730146..136ec8a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,4 +36,4 @@ jobs: - name: Run tox run: tox -e py - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 07079df..7eef563 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,13 +26,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Build run: git fetch -a && cd doc && make html - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: doc/output/ @@ -46,5 +46,5 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4