Skip to content
Merged
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: 6 additions & 0 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ env:

jobs:
tag-new-version:
permissions:
contents: write
name: Tag new version
runs-on: ubuntu-24.04
outputs:
Expand All @@ -31,6 +33,10 @@ jobs:
create_annotated_tag: true

build-and-publish-docker-image:
permissions:
packages: write
contents: read

name: Build and publish Docker image
runs-on: ubuntu-24.04
needs: tag-new-version
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ name: CI
on:
push:

permissions:
contents: read

jobs:
check:
runs-on: ubuntu-24.04
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
- cron: "0 4 * * WED"

permissions:
contents: read

jobs:
update-dependencies:
runs-on: ubuntu-24.04
Expand Down
Loading