Skip to content

Commit

Permalink
🚫 Ignore Import Order False Positives (#5020)
Browse files Browse the repository at this point in the history
* 🚫 Ignore incorrect reporting of import order.

* 📌 Pinned action version for new workflows.
  • Loading branch information
PepperMoJ authored Nov 13, 2024
1 parent bbbc117 commit 2796247
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@486457dc46e82b9a740ca0ef1dac6a38a3fc272d # v4.0.2
with:
role-to-assume: ${{secrets.AWS_ID_DORMANT_USERS}}
aws-region: eu-west-2
- uses: actions/setup-python@v5
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
cache: "pipenv"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/experiment-identify-non-committers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
uses: aws-actions/configure-aws-credentials@486457dc46e82b9a740ca0ef1dac6a38a3fc272d # v4.0.2
with:
role-to-assume: ${{secrets.AWS_ID_DORMANT_USERS}}
aws-region: eu-west-2
- uses: actions/setup-python@v5
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: "3.11"
cache: "pipenv"
Expand Down
2 changes: 2 additions & 0 deletions test/test_bin/test_archive_repos.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# pylint: disable=C0411

import os
import unittest
from datetime import datetime
Expand Down
2 changes: 2 additions & 0 deletions test/test_bin/test_remove_stale_outside_collaborators.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# pylint: disable=C0411

import os
import unittest
from unittest.mock import call, patch, MagicMock
Expand Down

0 comments on commit 2796247

Please sign in to comment.