Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/checkout digest to 1d96c77 #1169

Merged
merged 5 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

jobs:
integration-tests:
runs-on: [self-hosted, jammy, edge]
runs-on: [self-hosted, jammy, edge, x64]
if: ${{ !failure() }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Install tox
run: python3 -m pip install tox
- name: Run integration tests
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ on:
jobs:
inclusive-naming-check:
name: Inclusive naming
runs-on: [self-hosted, jammy, edge]
runs-on: [self-hosted, jammy, edge, x64]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
with:
repository: canonical/Inclusive-naming
path: "./"
- run: mv * /tmp
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Merge configuration files
run: |
# Combine all entries and replace matching elements by
Expand Down Expand Up @@ -49,9 +49,9 @@ jobs:
woke-version: latest
shellcheck-lint:
name: Shell scripts lint
runs-on: [self-hosted, jammy, edge]
runs-on: [self-hosted, jammy, edge, x64]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Gather files to scan
shell: bash
id: gather
Expand Down Expand Up @@ -110,11 +110,11 @@ jobs:
run: shellcheck -f gcc ${{steps.gather.outputs.filepaths}}
code-lint:
name: Code lint
runs-on: [self-hosted, jammy, edge]
runs-on: [self-hosted, jammy, edge, x64]
outputs:
outcome: ${{ steps.report.outputs.outcome }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Install tox
run: python3 -m pip install tox
- name: Run tests
Expand Down Expand Up @@ -221,9 +221,9 @@ jobs:
run: echo "outcome=${{ steps.run-tests.conclusion }}" >> $GITHUB_OUTPUT
license-headers-check:
name: Check license headers
runs-on: [self-hosted, jammy, edge]
runs-on: [self-hosted, jammy, edge, x64]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Check .licenserc.yaml exists
id: licenserc-yaml
run: echo "exists=$([ -f .licenserc.yaml ] && echo "true" || echo "false")" >> $GITHUB_OUTPUT
Expand All @@ -238,7 +238,7 @@ jobs:
required_status_checks:
if: "always()"
name: Required Test Status Checks
runs-on: [self-hosted, jammy, edge]
runs-on: [self-hosted, jammy, edge, x64]
needs:
- inclusive-naming-check
- code-lint
Expand Down
3 changes: 3 additions & 0 deletions .woke.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
rules:
# Ignore "whitelist" - this is used in pylint configuration.
- name: whitelist
# Ignore "master" - While https://github.com/canonical/redis-k8s-operator/pull/78
# is not merged
- name: master
Loading