diff --git a/.github/workflows/docker_actions.yml b/.github/workflows/docker_actions.yml index 0d1957269d..48d019ec22 100644 --- a/.github/workflows/docker_actions.yml +++ b/.github/workflows/docker_actions.yml @@ -23,13 +23,13 @@ jobs: timeout-minutes: 420 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: 'nwchemgit/nwchem-dockerfiles' fetch-depth: 5 - name: Setup cache id: setup-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/cache diff --git a/.github/workflows/github_actions.yml b/.github/workflows/github_actions.yml index 710a33de1f..999d51183e 100644 --- a/.github/workflows/github_actions.yml +++ b/.github/workflows/github_actions.yml @@ -337,7 +337,7 @@ jobs: continue-on-error: ${{ matrix.experimental }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 40 - name: Get Instruction @@ -347,7 +347,7 @@ jobs: shell: bash - name: Setup cache id: setup-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/cache diff --git a/.github/workflows/github_actions_archs.yml b/.github/workflows/github_actions_archs.yml index 086aa05ff2..f5ea009b4e 100644 --- a/.github/workflows/github_actions_archs.yml +++ b/.github/workflows/github_actions_archs.yml @@ -52,12 +52,12 @@ jobs: steps: - name: Setup cache id: setup-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/cache key: ${{ runner.os }}-${{ matrix.mpi_impl}}-${{ matrix.distro}}-${{ matrix.arch}}-nwchem-v009 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout with: fetch-depth: 40 diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 249349c71a..2340b22ae6 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -8,8 +8,8 @@ jobs: lint_python: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 - run: pip install --upgrade pip wheel - run: pip install bandit black codespell flake8 flake8-2020 flake8-bugbear flake8-comprehensions isort mypy pytest pyupgrade safety