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
2 changes: 1 addition & 1 deletion .github/workflows/_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Load DockerHub credentials
id: dockerhub-creds
if: success() && inputs.publish_images
uses: gittools/cicd/dockerhub-creds@v2
uses: gittools/cicd/dockerhub-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_docker_manifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Load DockerHub credentials
if: inputs.publish_manifests
id: dockerhub-creds
uses: gittools/cicd/dockerhub-creds@v2
uses: gittools/cicd/dockerhub-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
- name: Load NuGet credentials
id: nuget-creds
if: inputs.publish_packages
uses: gittools/cicd/nuget-creds@v2
uses: gittools/cicd/nuget-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

- name: Load Chocolatey credentials
id: choco-creds
if: inputs.publish_packages
uses: gittools/cicd/choco-creds@v2
uses: gittools/cicd/choco-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
- name: Load DockerHub credentials
id: dockerhub-creds
if: env.CAN_PUBLISH == 'true'
uses: gittools/cicd/dockerhub-creds@v2
uses: gittools/cicd/dockerhub-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gittools-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Load GitHub App credentials
id: github-app-creds
uses: gittools/cicd/github-app-creds@v2
uses: gittools/cicd/github-app-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Load GitHub release token
id: github-creds
uses: gittools/cicd/github-creds@v2
uses: gittools/cicd/github-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: gittools/cicd/checkout@v2
uses: gittools/cicd/checkout@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
fetch-depth: 1
Expand All @@ -46,6 +46,6 @@ jobs:
working-directory: ${{ github.workspace }}/docs/input

- name: Commit and push markdown docs changes
uses: gittools/cicd/git-commit-push@v2
uses: gittools/cicd/git-commit-push@v5
with:
message: "include markdown docs changes"
4 changes: 2 additions & 2 deletions .github/workflows/public-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: gittools/cicd/checkout@v2
uses: gittools/cicd/checkout@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
fetch-depth: 0
Expand All @@ -24,6 +24,6 @@ jobs:
run: ./src/mark-shipped.ps1

- name: Commit and push changes
uses: gittools/cicd/git-commit-push@v2
uses: gittools/cicd/git-commit-push@v5
with:
message: "include public API changes"
2 changes: 1 addition & 1 deletion .github/workflows/winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Load GitHub release token
id: github-creds
uses: gittools/cicd/github-creds@v2
uses: gittools/cicd/github-creds@v5
with:
op_service_account_token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}

Expand Down