diff options
author | Valery Piashchynski <[email protected]> | 2022-05-10 00:45:01 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-05-10 00:45:01 +0200 |
commit | 4287d8f1cc0eb4a575c8155f32041e38cb039ae7 (patch) | |
tree | d68e88ce92a3da9820b72aba0657a20138d19d60 /.github | |
parent | f72f698343c5dd9626b953ca50be66230c35eddd (diff) | |
parent | 87c04f81e5fb76faeb0c5a1f996d28d90aa5aa2b (diff) |
Merge branch 'master' into dependabot/github_actions/docker/setup-buildx-action-2
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' |