Skip to content

Commit dcdffa3

Browse files
committed
Fix GitHub Actions warnings
1 parent 3c57f85 commit dcdffa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ on:
88
jobs:
99
build:
1010
name: Build and release
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v2
1515
- name: Get the version
1616
id: get_version
17-
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
17+
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
1818
- name: Test on PG11
1919
run: env USE_DOCKER=1 POSTGRES_VERSION=11 ./build-and-test.sh
2020
- name: Test on PG12

0 commit comments

Comments
 (0)