From 7e4dd73f6ed1070048e710b344b5e89f6d015e1f Mon Sep 17 00:00:00 2001 From: Benjamin Pannell Date: Sat, 30 Sep 2023 23:00:44 +0100 Subject: [PATCH] chore: Update CI dependencies --- .github/workflows/release.yml | 8 ++++---- .github/workflows/rust.yml | 4 ++-- infra/providers.tf | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92456993..409cc6e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build Dockerfile run: docker build . --file Dockerfile --tag image @@ -85,7 +85,7 @@ jobs: url: ${{ env.STAGING_HEALTHCHECK }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fetch handler artifact uses: actions/download-artifact@v3 @@ -93,7 +93,7 @@ jobs: name: ${{ env.HANDLER_NAME }} - name: 'Login via Azure CLI' - uses: azure/login@v1 + uses: Azure/login@v1 with: tenant-id: a26571f1-22b3-4756-ac7b-39ca684fab48 subscription-id: 108b3ddb-53fb-4344-80b2-d6c151912be6 @@ -128,7 +128,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Fetch handler artifact uses: actions/download-artifact@v3 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 87b56244..e639329d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -68,6 +68,6 @@ jobs: -format=lcov > lcov.info - name: Upload code coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v4-beta with: file: ./lcov.info \ No newline at end of file diff --git a/infra/providers.tf b/infra/providers.tf index 5dad977c..1346da84 100644 --- a/infra/providers.tf +++ b/infra/providers.tf @@ -4,17 +4,17 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "~> 3.73.0" + version = "~> 3.74.0" } azuread = { source = "hashicorp/azuread" - version = "~> 2.42.0" + version = "~> 2.43.0" } honeycombio = { source = "honeycombio/honeycombio" - version = "~> 0.16.0" + version = "~> 0.17.0" } } }