Skip to content
Closed
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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
Expand All @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install hadolint
run: |
Expand All @@ -48,7 +48,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install yamllint
run: |
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/docker-dependency-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ env:
REPORT_PATH: docker-dependency-report.json
UPDATE_BRANCH: docker-dependency-updates
PR_TITLE: "chore(deps): docker dependency upgrade"
PR_TEAM_REVIEWER: worker
PR_LABELS: |-
docker
dependencies
PR_AUTO_MERGE: "true"
PR_MERGE_METHOD: squash
COMMIT_MESSAGE: "chore(deps): update Docker dependency pins"
Expand Down Expand Up @@ -55,7 +59,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Load dependency updater defaults
id: config
Expand Down Expand Up @@ -141,11 +145,12 @@ jobs:

permissions:
contents: write
issues: write
pull-requests: write

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.ref }}

Expand Down Expand Up @@ -382,6 +387,8 @@ jobs:
body-path: docker-dependency-pr-body.md
branch: ${{ needs.config.outputs.update_branch }}
add-paths: ${{ needs.config.outputs.dockerfile }}
labels: ${{ env.PR_LABELS }}
team-reviewers: ${{ env.PR_TEAM_REVIEWER }}
Comment thread
fqjony marked this conversation as resolved.
draft: false
delete-branch: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-ops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Build worker image
run: make build IMAGE_NAME=worker-runtime-output TAG="${GITHUB_SHA}"
Expand Down
Loading