From 7bb1a45da1627dbc9214cb86649bb906ef73a045 Mon Sep 17 00:00:00 2001 From: Kirill Pinchuk Date: Wed, 24 Jul 2024 20:39:07 +0300 Subject: [PATCH] github: update actions --- .github/workflows/latest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/latest.yml b/.github/workflows/latest.yml index 58b90c5..7145d3e 100644 --- a/.github/workflows/latest.yml +++ b/.github/workflows/latest.yml @@ -17,11 +17,11 @@ jobs: name: create and save container runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 - - uses: docker/login-action@v1 + - uses: actions/checkout@v4 + - uses: docker/login-action@v3 with: registry: ghcr.io - username: ${{ github.repository_owner }} + username: ${{ github.actor }} password: ${{ secrets.GHCR_TOKEN }} - run: docker pull ghcr.io/micro-fan/python:latest || true - run: > @@ -33,8 +33,8 @@ jobs: name: assemble default container runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 - - uses: docker/login-action@v1 + - uses: actions/checkout@v4 + - uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }}