aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2023-03-03 14:11:31 +0000
committerGravatar GitHub <[email protected]>2023-03-03 14:11:31 +0000
commitf01127b34789a0d4eabf205fa0c0544e7d894d40 (patch)
tree49b4c28e263a9e23f292562163d1b3a5dcda4582
parentBundle workflows into a "main" CI flow (#2425) (diff)
Bump action versions in CI (#2433)
-rw-r--r--.github/workflows/build-deploy.yml8
-rw-r--r--.github/workflows/lint-test.yml6
-rw-r--r--.github/workflows/sentry_release.yml2
3 files changed, 7 insertions, 9 deletions
diff --git a/.github/workflows/build-deploy.yml b/.github/workflows/build-deploy.yml
index b099dd22c..2582a4113 100644
--- a/.github/workflows/build-deploy.yml
+++ b/.github/workflows/build-deploy.yml
@@ -26,10 +26,10 @@ jobs:
# See https://github.com/docker/build-push-action
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v1
+ uses: docker/setup-buildx-action@v2
- name: Login to Github Container Registry
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
@@ -40,7 +40,7 @@ jobs:
# and with the short SHA of the commit.
- name: Build and push
- uses: docker/build-push-action@v2
+ uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
@@ -73,7 +73,7 @@ jobs:
kubeconfig: ${{ secrets.KUBECONFIG }}
- name: Deploy to Kubernetes
- uses: Aure/k8s-deploy@v4
+ uses: azure/k8s-deploy@v4
with:
manifests: |
namespaces/default/bot/deployment.yaml
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml
index bea7b8760..051ca2265 100644
--- a/.github/workflows/lint-test.yml
+++ b/.github/workflows/lint-test.yml
@@ -28,13 +28,11 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Install Python Dependencies
- uses: HassanAbouelela/actions/setup-python@setup-python_v1.3.1
+ uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.0
with:
- # Set dev=true to install flake8 extensions, which are dev dependencies
- dev: true
python_version: '3.10'
# Check all of our non-dev dependencies are compatible with the MIT license.
diff --git a/.github/workflows/sentry_release.yml b/.github/workflows/sentry_release.yml
index f215148a8..cdc8f37d5 100644
--- a/.github/workflows/sentry_release.yml
+++ b/.github/workflows/sentry_release.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
- uses: actions/checkout@main
+ uses: actions/checkout@v3
- name: Create a Sentry.io release
uses: tclindner/[email protected]