From 8ff0e56f5045183ac93e09f0d62f921c45b54137 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 11 Sep 2023 06:52:48 +0000 Subject: [PATCH] Update actions/checkout action to v4 --- .gitea/workflows/pynyaata.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pynyaata.yml b/.gitea/workflows/pynyaata.yml index bb33dc7..1013f28 100644 --- a/.gitea/workflows/pynyaata.yml +++ b/.gitea/workflows/pynyaata.yml @@ -8,7 +8,7 @@ jobs: steps: - run: apt-get update - run: apt-get install -y git nodejs - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: pip install flake8 - run: flake8 pynyaata @@ -18,7 +18,7 @@ jobs: needs: [lint] steps: - run: apk add git nodejs - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/metadata-action@v4 id: meta with: @@ -46,7 +46,7 @@ jobs: steps: - run: apt-get update - run: apt-get install -y git nodejs - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: pip install twine - run: python setup.py sdist - run: twine upload dist/*