From 5cb21908f490fb5358a1f0baf644b89a02d4bfc5 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 20 Dec 2022 11:19:25 +0100 Subject: [PATCH] Update actions versions as requested by GitHub Actions --- .github/workflows/code-server.yml | 2 +- .github/workflows/devcontainer.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-server.yml b/.github/workflows/code-server.yml index 7cc6881..205b9da 100644 --- a/.github/workflows/code-server.yml +++ b/.github/workflows/code-server.yml @@ -25,7 +25,7 @@ jobs: --tag code-server - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2.1.0 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index f4c76e0..af7b7dd 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -25,7 +25,7 @@ jobs: --tag devcontainer - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2.1.0 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d280595..d91e77d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build mix image run: | @@ -55,7 +55,7 @@ jobs: docker image save ejabberd/ecs:latest --output ejabberd-latest.tar - name: Upload image - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ejabberd-image path: ejabberd-latest.tar