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