From 63b7b3a8808c3016ed09f80fa36be61bb1594d65 Mon Sep 17 00:00:00 2001 From: jetzlstorfer Date: Fri, 22 Dec 2023 12:17:15 +0000 Subject: [PATCH] update dependencies --- .github/workflows/codeql.yml | 6 +++--- .github/workflows/deploy-functions.yml | 8 ++++---- .github/workflows/golint.yaml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d34d3b3..905ee64 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -42,7 +42,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -56,7 +56,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 # ℹī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -69,6 +69,6 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/deploy-functions.yml b/.github/workflows/deploy-functions.yml index b843877..40aa7b2 100644 --- a/.github/workflows/deploy-functions.yml +++ b/.github/workflows/deploy-functions.yml @@ -16,9 +16,9 @@ jobs: - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: - go-version: 1.18 + go-version: 1.20 - name: Build run: go build -v . @@ -27,7 +27,7 @@ jobs: run: go test -v ./... - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: plattentests-go path: ./plattentests-go @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Download - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: plattentests-go - uses: azure/login@v1 diff --git a/.github/workflows/golint.yaml b/.github/workflows/golint.yaml index 33f9c3d..b47ef39 100644 --- a/.github/workflows/golint.yaml +++ b/.github/workflows/golint.yaml @@ -16,9 +16,9 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v4 + - uses: actions/setup-go@v5 with: - go-version: '1.18' + go-version: '1.20' - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3