ci: Update actions to newest versions

- `actions/stale` -> `v9`
- `actions/cache` -> `v4`
- `actions/checkout` -> `v4`
- `actions/setup-node` -> `v4`
- `docker/login-action` -> `v3`
- `actions/setup-python` -> `v5`
- `codecov/codecov-action` -> `v4`
- `actions/upload-artifact` -> `v4`
- `subosito/flutter-action` -> `v2`
- `docker/build-push-action` -> `v5`
- `docker/setup-buildx-action` -> `v3`
This commit is contained in:
Reinier van der Leer
2024-02-17 13:59:13 +01:00
parent e2b519ef3b
commit fa4bdef17c
10 changed files with 38 additions and 36 deletions

View File

@@ -88,13 +88,13 @@ jobs:
run: docker ps
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Python ${{ env.min-python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ env.min-python-version }}
@@ -107,7 +107,7 @@ jobs:
curl -sSL https://install.python-poetry.org | python -
- name: Install Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: v18.15