diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 6 | ||||
-rw-r--r-- | .github/workflows/release_nightly.yml | 6 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e81213ef..ca1c4a82 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -148,19 +148,19 @@ jobs: uses: actions/checkout@v3 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 # Action page: <https://github.com/docker/setup-qemu-action> + uses: docker/setup-qemu-action@v2 # Action page: <https://github.com/docker/setup-qemu-action> - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 # Action page: <https://github.com/docker/setup-buildx-action> - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_LOGIN }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ secrets.GHCR_LOGIN }} diff --git a/.github/workflows/release_nightly.yml b/.github/workflows/release_nightly.yml index 7e1cf4f7..90d6315b 100644 --- a/.github/workflows/release_nightly.yml +++ b/.github/workflows/release_nightly.yml @@ -148,19 +148,19 @@ jobs: uses: actions/checkout@v3 - name: Set up QEMU - uses: docker/setup-qemu-action@v1 # Action page: <https://github.com/docker/setup-qemu-action> + uses: docker/setup-qemu-action@v2 # Action page: <https://github.com/docker/setup-qemu-action> - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 # Action page: <https://github.com/docker/setup-buildx-action> - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_LOGIN }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ secrets.GHCR_LOGIN }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9542537f..a8021e7b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -151,7 +151,7 @@ jobs: - name: Try to execute run: docker run --rm rr:local -v - - uses: aquasecurity/[email protected] # action page: <https://github.com/aquasecurity/trivy-action> + - uses: aquasecurity/[email protected] # action page: <https://github.com/aquasecurity/trivy-action> with: image-ref: rr:local format: 'table' |