Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ 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 }}
password: ${{ secrets.GITHUB_TOKEN }}

- 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' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading