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/percy-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout SCM
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/percy-snapshot
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/percy-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Checkout only the files that are needed for visual testing and safe for the snapshots workflow to run
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
sparse-checkout: |
templates/docs/examples/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-percy-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
# Checkout `main` branch of Vanilla
- name: Checkout SCM
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Remove SCM directories that will be replaced by artifact files
run: rm -rf templates/docs/examples/ templates/_macros/ tokens/ sd.config.json scss/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 18
Expand All @@ -29,7 +29,7 @@ jobs:
name: linkchecker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build Docker image
run: DOCKER_BUILDKIT=1 docker build --build-arg BUILD_ID=test --tag testrun .
- name: Run server with Docker
Expand All @@ -45,7 +45,7 @@ jobs:
name: Cypress
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build Docker image
run: DOCKER_BUILDKIT=1 docker build --build-arg BUILD_ID=test --tag testrun .
- name: Run server with Docker
Expand All @@ -62,7 +62,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check inclusive naming
uses: canonical/inclusive-naming@main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Build Vanilla
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 18
Expand All @@ -33,7 +33,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 12
Expand All @@ -53,7 +53,7 @@ jobs:
needs: [build, publish-npm]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
with:
name: css
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Only need package.json as it is used by the get_version step to pass tag number into release-drafter
sparse-checkout: package.json
Expand Down