diff --git a/.github/workflows/deploy-aks.yml b/.github/workflows/deploy-aks.yml index 6dfb625..aeed4fb 100644 --- a/.github/workflows/deploy-aks.yml +++ b/.github/workflows/deploy-aks.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run tests run: | @@ -44,7 +44,7 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build image run: docker build . --file Dockerfile --tag image @@ -84,7 +84,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Calculate version number id: version @@ -126,7 +126,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Calculate version number id: version diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ccbe37c..74c41e3 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,6 +15,6 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run tests run: cargo test --verbose