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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout caller repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout platform repo (for composite actions)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: refokus-agency/platform
ref: ${{ inputs.platform-ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:
shell: bash

- name: Checkout caller repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout platform repo (for composite actions)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: refokus-agency/platform
ref: ${{ inputs.platform-ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
- uses: googleapis/release-please-action@v5
id: release
with:
config-file: release-please-config.json
manifest-file: .release-please-manifest.json

- uses: actions/checkout@v4
- uses: actions/checkout@v6
if: ${{ steps.release.outputs.release_created }}
with:
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ jobs:
- name: Mint release token (GitHub App)
id: app-token
if: env.RELEASE_APP_ID != ''
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}

- name: Checkout caller repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false

- name: Checkout platform repo (for composite actions)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: refokus-agency/platform
ref: ${{ inputs.platform-ref }}
Expand All @@ -102,7 +102,7 @@ jobs:
unsafe-install-scripts: ${{ inputs.unsafe-install-scripts }}

- name: Semantic release
uses: cycjimmy/semantic-release-action@v4
uses: cycjimmy/semantic-release-action@v6
with:
ci: true
semantic_version: ${{ inputs.semantic-release-version }}
Expand Down