aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-10-16 11:08:50 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-10-16 11:08:50 +0200
commit84c83a1a39aa7ca11409bbf139a724b6572ec2ed (patch)
tree1013baedb406b1bb7ec38fe1b184232e212c14bd /.github
parentdocker: python image instead of alpine (diff)
downloadvoid-84c83a1a39aa7ca11409bbf139a724b6572ec2ed.tar.gz
void-84c83a1a39aa7ca11409bbf139a724b6572ec2ed.zip
workflows/ci: upgrade actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4b07403..4b98a8e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,14 +9,14 @@ jobs:
test:
strategy:
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9, 3.x]
+ python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
runs-on: ubuntu-latest
name: 'Python ${{ matrix.python-version }}'
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
- name: Run tests
@@ -30,7 +30,7 @@ jobs:
steps:
- id: meta
name: Docker Hub metadata
- uses: docker/metadata-action@v3
+ uses: docker/metadata-action@v4
with:
images: '${{ secrets.DOCKERHUB_USERNAME }}/void'
flavor: |
@@ -41,12 +41,12 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Login to Docker Hub
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
with:
username: '${{ secrets.DOCKERHUB_USERNAME }}'
password: '${{ secrets.DOCKERHUB_TOKEN }}'
- name: Build and publish
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v3
with:
push: true
tags: '${{ steps.meta.outputs.tags }}'