Skip to content

Commit

Permalink
👷 Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
anarion80 committed Nov 26, 2023
1 parent 6b743dc commit 4d26040
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python 3
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.x"

Expand All @@ -35,6 +35,6 @@ jobs:
run: yamllint .

- name: Lint docs
uses: articulate/actions-markdownlint@v1
uses: articulate/actions-markdownlint@v1.1.0
with:
version: 0.32.2
8 changes: 4 additions & 4 deletions .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
name: Lint Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint docs
uses: articulate/actions-markdownlint@v1
uses: articulate/actions-markdownlint@v1.1.0
with:
version: 0.32.2

Expand All @@ -24,9 +24,9 @@ jobs:
run:
working-directory: website
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
name: Lint Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint docs
uses: articulate/actions-markdownlint@v1
uses: articulate/actions-markdownlint@v1.1.0
with:
version: 0.32.2

Expand All @@ -24,8 +24,8 @@ jobs:
run:
working-directory: website
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Generate Test Matrix
id: set-matrix
shell: bash
Expand All @@ -29,7 +29,7 @@ jobs:
matrix:
role: ${{ fromJson(needs.generate-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Molecule Test
uses: gofrolist/molecule-action@dfbfd1af6a77523c8a937a1532f92808065a00a4
with:
Expand Down
2 changes: 1 addition & 1 deletion tests/github-test-matrix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ for f in ./roles/*; do
fi
done

echo "::set-output name=matrix::$(echo $test_matrix | jq -R -s -c 'sub("\n"; " ") | split(" ")[:-1]')"
echo "matrix=$(echo $test_matrix | jq -R -s -c 'sub("\n"; " ") | split(" ")[:-1]')" >> $GITHUB_OUTPUT

0 comments on commit 4d26040

Please sign in to comment.