Skip to content

Commit c8a52e0

Browse files
authored
use ubuntu 22 (#401)
fix #400
1 parent 32ec6bf commit c8a52e0

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

.github/workflows/rust.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
pre_job:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
outputs:
1515
should_skip: ${{ steps.skip_check.outputs.should_skip }}
1616
paths_result: ${{ steps.skip_check.outputs.paths_result }}
@@ -25,7 +25,7 @@ jobs:
2525
if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/')
2626

2727
name: Linux x86_64
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929

3030
steps:
3131
- name: Checkout
@@ -65,7 +65,7 @@ jobs:
6565
if: needs.pre_job.outputs.should_skip != 'true' || startsWith(github.ref, 'refs/tags/')
6666

6767
name: Linux arm64
68-
runs-on: ubuntu-latest
68+
runs-on: ubuntu-22.04
6969

7070
steps:
7171
- name: Checkout
@@ -194,7 +194,7 @@ jobs:
194194
publish-npm:
195195
if: startsWith(github.ref, 'refs/tags/')
196196
needs: [build-linux-x64, build-mac, build-windows]
197-
runs-on: ubuntu-latest
197+
runs-on: ubuntu-22.04
198198
steps:
199199
- uses: actions/checkout@v3
200200
- uses: actions/setup-node@v3
@@ -209,7 +209,7 @@ jobs:
209209
needs: pre_job
210210
if: needs.pre_job.outputs.should_skip != 'true'
211211

212-
runs-on: ubuntu-latest
212+
runs-on: ubuntu-22.04
213213

214214
steps:
215215
- name: Checkout
@@ -237,7 +237,7 @@ jobs:
237237
needs: pre_job
238238
if: needs.pre_job.outputs.should_skip != 'true'
239239

240-
runs-on: ubuntu-latest
240+
runs-on: ubuntu-22.04
241241

242242
steps:
243243
- name: Checkout
@@ -253,7 +253,7 @@ jobs:
253253
run: ./s/test
254254

255255
check_version:
256-
runs-on: ubuntu-latest
256+
runs-on: ubuntu-22.04
257257

258258
steps:
259259
- name: Checkout

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v1.5.2 - 2025-01-11
11+
12+
### Fixed
13+
14+
- Fixed accidental glibc upgrade (#401).
15+
1016
## v1.5.1 - 2025-01-10
1117

1218
### Fixed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
authors = ["Steve Dignam <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0"

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
squawk = final.rustPlatform.buildRustPackage {
2020
pname = "squawk";
21-
version = "1.5.1";
21+
version = "1.5.2";
2222

2323
cargoLock = {
2424
lockFile = ./Cargo.lock;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk-cli",
3-
"version": "1.5.1",
3+
"version": "1.5.2",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Steve Dignam <[email protected]>",

0 commit comments

Comments
 (0)