Skip to content

Commit

Permalink
Update requirement versions and GitHub action versions
Browse files Browse the repository at this point in the history
I also fixed the default value of fare check mentioned in #165
  • Loading branch information
jdholtz committed Oct 7, 2023
1 parent 34b611e commit 1912c8d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: codespell
uses: codespell-project/actions-codespell@v2
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Log in to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

# A new tagged release is published, which builds :tag and :latest
- name: Build and push :tag
if: github.event_name == 'release'
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand All @@ -59,7 +59,7 @@ jobs:
# Develop branch push, which builds :develop
- name: Build and push :develop
if: github.event_name == 'push'
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: isort
uses: isort/[email protected]
with:
Expand All @@ -32,15 +32,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: black
uses: psf/black@stable

flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ When upgrading to a new version, make sure to follow the directions under the "U
If there is no "Upgrading" header for that version, no post-upgrade actions need to be performed.


## Upcoming
### Upgrading
- Upgrade the dependencies to the latest versions by running `pip install -r requirements.txt`


## 6.1 (2023-09-28)
### Improvements
- Flights are now identified by their flight number, ensuring the correct flight is referenced when checking fares and scheduling check-ins
Expand Down
2 changes: 1 addition & 1 deletion CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Auto-Southwest Check-In supports both global configuration and account/reservati
* [Reservations](#reservations)

## Fare Check
Default: false \
Default: true \
Type: Boolean

In addition to automatically checking in, check for price drops on an interval
Expand Down
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apprise==1.5.0
certifi==2023.07.22
pytz==2023.3 # Remove when this script only supports Python 3.9+
pytz==2023.3.post1 # Remove when this script only supports Python 3.9+
requests==2.31.0
selenium==4.11.2
seleniumbase==4.18.6
seleniumbase==4.19.2

0 comments on commit 1912c8d

Please sign in to comment.