Skip to content

Commit

Permalink
preconfigure tzdata and gpg
Browse files Browse the repository at this point in the history
  • Loading branch information
akashchi committed Feb 1, 2024
1 parent fbfdebc commit 41b0b38
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/setup_python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ runs:
- if: ${{ runner.os == 'Linux' && runner.arch == 'ARM64' }}
name: Setup sudo and python3
shell: bash
run: apt-get update && apt-get install -y sudo python3 # Needed for the deadsnakes action
run: apt-get update && apt-get install -y sudo python3 gpg-agent tzdata # Needed for the deadsnakes action
env:
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
TZ: "Europe/London" # to prevent tzdata from waiting user input

- if: ${{ runner.os == 'Linux' && runner.arch == 'ARM64' }}
name: Setup Python ${{ inputs.version }}
Expand Down

0 comments on commit 41b0b38

Please sign in to comment.