summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-10-18 16:40:05 +0100
committerGitHub <noreply@github.com>2022-10-18 15:40:05 +0000
commitb951d6bd4ce86021266249b9f92eca47b1be8937 (patch)
tree265b7ff160fe41de0b70993889593a24e70fc7b4
parentUpdate the thread_id right before use (in case the bg update hasn't finished)... (diff)
downloadsynapse-b951d6bd4ce86021266249b9f92eca47b1be8937.tar.xz
Fixes to release-artifacts warnings (#14224)
Diffstat (limited to '')
-rw-r--r--.github/workflows/release-artifacts.yml4
-rw-r--r--changelog.d/14224.misc1
2 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml

index e1b1e29093..90cafdd667 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml
@@ -27,6 +27,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 + with: + python-version: '3.x' - id: set-distros run: | # if we're running from a tag, get the full list of distros; otherwise just use debian:sid @@ -70,6 +72,8 @@ jobs: - name: Set up python uses: actions/setup-python@v4 + with: + python-version: '3.x' - name: Build the packages # see https://github.com/docker/build-push-action/issues/252 diff --git a/changelog.d/14224.misc b/changelog.d/14224.misc new file mode 100644
index 0000000000..6fad16d83d --- /dev/null +++ b/changelog.d/14224.misc
@@ -0,0 +1 @@ +Update CI config to avoid GitHub Actions deprecation warnings.