diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96eab687..f80bc487 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,9 +17,9 @@ jobs: # for tagging the commit contents: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v6 name: Install Python with: python-version: 3.12 @@ -67,7 +67,7 @@ jobs: echo "release_version=$release_version" >> $GITHUB_OUTPUT echo "release_tag=$release_tag" >> $GITHUB_OUTPUT - name: Tag commit - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8 with: script: | github.rest.git.createRef({ diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7ac3c6fb..3d3e52d2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,7 +17,7 @@ jobs: container: python:${{ matrix.python-version }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Lint code run: | @@ -50,7 +50,7 @@ jobs: --health-retries 5 steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Install dependencies run: | diff --git a/requirements.txt b/requirements.txt index d0c4fe88..0116e1b3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ click==8.1.7 redis==6.1.0 structlog==24.1.0 croniter +pytz