Skip to content

Commit

Permalink
Merge pull request #339 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Upgrade GitHub Action checkout
  • Loading branch information
akaihola authored Mar 26, 2022
2 parents 9b27dcc + d1fd2d3 commit eef9571
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Bandit security check for code
uses: akaihola/bandit-report-artifacts@use-config
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v16
Expand Down Expand Up @@ -65,12 +65,12 @@ jobs:
RUN_MYPY_AND_PYLINT: >-
${{ matrix.python-version == '3.9' || matrix.python-version == '3.10' }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3

- name: Make sure that `bump_version.py` still finds all version strings
and that there's a future milestone on GitHub Issues.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-future.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: 'master'
fetch-depth: 0
- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
Expand Down

0 comments on commit eef9571

Please sign in to comment.