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
4 changes: 2 additions & 2 deletions .github/workflows/check_auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
SF_API_SECRET: "${{ secrets.SF_API_SECRET }}"
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
michieldegezelle marked this conversation as resolved.
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
- name: Add silverfin-cli package latest version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

# Check out PR HEAD (config.json / template tree for check-dependencies must match the PR)
- name: Checkout PR head
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
michieldegezelle marked this conversation as resolved.
with:
ref: ${{ steps.pr-details.outputs.head_sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
# Step 1: Checkout the repository @ $GITHUB_WORKSPACE so workflow can access it
- name: Checkout Repository - Fetch history of the current branch
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
michieldegezelle marked this conversation as resolved.
with:
# Current branch only
ref: ${{ github.ref }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
changed_templates: ${{ steps.templates_changed.outputs.changed_templates }}
steps:
- name: Checkout Repository - Fetch all history for all tags and branches
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
michieldegezelle marked this conversation as resolved.
with:
fetch-depth: 0
- name: Get changed liquid files
id: changed-files
uses: tj-actions/changed-files@v41
uses: tj-actions/changed-files@v46
with:
since_last_remote_commit: false
dir_names: false
ref: "main"
base_sha: 'main'
files: |
**/**.{liquid,yml,yaml,json}
- name: Filter templates changed
Expand Down Expand Up @@ -76,13 +76,13 @@ jobs:
needs: [check-auth, check-changed-templates]
steps:
- name: Checkout Repository - Fetch all history for all tags and branches
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node v20
uses: actions/setup-node@v4
- name: Setup Node v22
uses: actions/setup-node@v6
with:
node-version: 20
node-version: 22
- name: Load Silverfin config file from secrets
run: |
mkdir -p $HOME/.silverfin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
michieldegezelle marked this conversation as resolved.
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update_templates_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
has_partner_deployment_label: ${{ steps.haslabel.outputs.labeled-3-deploy-to-partner }}
steps:
- name: Checkout Repository - Fetch all history for all tags and branches
uses: actions/checkout@v4
uses: actions/checkout@v6
Comment thread
michieldegezelle marked this conversation as resolved.
with:
fetch-depth: 0
- name: Labeled to partner deployment
Expand All @@ -29,7 +29,7 @@ jobs:
changed_templates: ${{ steps.templates_changed.outputs.changed_templates }}
steps:
- name: Checkout Repository - Fetch all history for all tags and branches
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Get changed liquid files
Expand Down
Loading