diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 3c80c7e1..a718ed16 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,7 +27,7 @@ jobs: submodules: recursive - name: Log in to the Container registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -35,12 +35,12 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ${{ env.REGISTRY }}/cot-rs/cot-site - name: Build and push Docker image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: docs/ push: ${{ github.ref == 'refs/heads/master' }} diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index 7fe8e2e2..cb30f98d 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -16,7 +16,7 @@ jobs: id-token: write steps: - name: Generate GitHub token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: generate-token with: app-id: ${{ secrets.COTBOT_APP_ID }} @@ -46,7 +46,7 @@ jobs: cancel-in-progress: false steps: - name: Generate GitHub token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 id: generate-token with: app-id: ${{ secrets.COTBOT_APP_ID }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 46523959..8b6afb0f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -237,7 +237,7 @@ jobs: - name: Merge code coverage reports run: cargo llvm-cov report --codecov --output-path codecov.json - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v6 with: files: codecov.json flags: rust