diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e29fde4..ca1298a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-22.04-xl steps: - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and export image run: | @@ -16,7 +16,7 @@ jobs: docker save bin -o /tmp/bin-image.tar - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: bin-image path: /tmp/bin-image.tar @@ -30,10 +30,10 @@ jobs: kind: ["alpine", "centos", "debian", "distroless", "ubuntu"] steps: - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download bin image artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: bin-image path: /tmp @@ -66,7 +66,7 @@ jobs: - name: Login to Docker Hub if: github.repository == 'denoland/deno_docker' && startsWith(github.ref, 'refs/tags/') - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }}