Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -89,9 +89,9 @@ jobs:
SHA_TEXT_FILE: sqlitebiter_sha256.txt

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: binaries
path: ${{ env.DIST_DIR_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_image_multi_arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
PLATFORMS: "linux/amd64,linux/arm64"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Extract version
id: extract-version
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
image: ghcr.io/thombashi/python-ci:3.11

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- run: make build

Expand All @@ -52,7 +52,7 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Run the installer script
run: curl -sSL https://raw.githubusercontent.com/thombashi/sqlitebiter/master/scripts/installer.sh | sudo bash -x
Loading