-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-markdown-link-action-fail
- Loading branch information
Showing
51 changed files
with
897 additions
and
303 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,12 @@ | |
# | ||
version: 2.1 | ||
orbs: | ||
python: circleci/python@2.2.0 | ||
python: circleci/python@3.0.0 | ||
shellcheck: circleci/[email protected] | ||
jobs: | ||
build-python: | ||
docker: | ||
- image: cimg/ruby:3.3.5-browsers | ||
- image: cimg/ruby:3.3.6-browsers | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -44,7 +44,7 @@ jobs: | |
build: | ||
docker: | ||
- image: cimg/ruby:3.3.5-browsers | ||
- image: cimg/ruby:3.3.6-browsers | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -112,7 +112,7 @@ jobs: | |
well-formed: | ||
docker: | ||
- image: cimg/ruby:3.3.5-node | ||
- image: cimg/ruby:3.3.6-node | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -129,7 +129,7 @@ jobs: | |
built-in-datatypes: | ||
docker: | ||
- image: cimg/ruby:3.3.5-node | ||
- image: cimg/ruby:3.3.6-node | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -146,7 +146,7 @@ jobs: | |
spelling: | ||
docker: | ||
- image: cimg/ruby:3.3.5-node | ||
- image: cimg/ruby:3.3.6-node | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -175,7 +175,7 @@ jobs: | |
go-test: | ||
docker: # run the steps with Docker | ||
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/ | ||
- image: cimg/go:1.23.2 | ||
- image: cimg/go:1.23.4 | ||
# directory where steps are run. Path must conform to the Go Workspace requirements | ||
working_directory: ~/repo | ||
steps: | ||
|
@@ -201,7 +201,7 @@ jobs: | |
csv-lint: | ||
docker: # run the steps with Docker | ||
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/ | ||
- image: cimg/go:1.23.2 # | ||
- image: cimg/go:1.23.4 # | ||
# directory where steps are run. Path must conform to the Go Workspace requirements | ||
working_directory: ~/repo | ||
steps: | ||
|
@@ -210,7 +210,7 @@ jobs: | |
# Read about caching dependencies: https://circleci.com/docs/2.0/caching/ | ||
keys: | ||
- v1-pkg-cache | ||
- run: go get -u github.com/Clever/csvlint/cmd/csvlint | ||
- run: go install github.com/Clever/csvlint/cmd/csvlint@latest | ||
- run: | ||
name: 🧹 Run CSV lint | ||
command: | | ||
|
@@ -222,7 +222,7 @@ jobs: | |
|
||
shell: | ||
docker: | ||
- image: cimg/python:3.12.7-node | ||
- image: cimg/python:3.13.1-node | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
@@ -254,7 +254,7 @@ jobs: | |
php: | ||
docker: | ||
- image: cimg/php:8.3.12 | ||
- image: cimg/php:8.4.1 | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Restyled | ||
|
||
on: | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
restyled: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
|
||
- uses: restyled-io/actions/setup@v4 | ||
- id: restyler | ||
uses: restyled-io/actions/run@v4 | ||
with: | ||
fail-on-differences: true | ||
|
||
- if: | | ||
!cancelled() && | ||
steps.restyler.outputs.success == 'true' && | ||
github.event.pull_request.head.repo.full_name == github.repository | ||
uses: peter-evans/create-pull-request@v7 | ||
with: | ||
base: ${{ steps.restyler.outputs.restyled-base }} | ||
branch: ${{ steps.restyler.outputs.restyled-head }} | ||
title: ${{ steps.restyler.outputs.restyled-title }} | ||
body: ${{ steps.restyler.outputs.restyled-body }} | ||
labels: "restyled" | ||
reviewers: ${{ github.event.pull_request.user.login }} | ||
delete-branch: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.