From 10cd022e081a9d591228a65897737a0774df4d70 Mon Sep 17 00:00:00 2001 From: Joe Chen Date: Sun, 18 Feb 2024 21:05:27 -0500 Subject: [PATCH] ci: upgrade GitHub Actions versions (#7666) --- .github/workflows/codeql.yml | 2 +- .github/workflows/docker.yml | 28 +++++++++++------------ .github/workflows/go.yml | 43 ++++++++++++++++++------------------ .github/workflows/lock.yml | 2 +- .github/workflows/scip.yml | 2 +- .github/workflows/shell.yml | 2 +- 6 files changed, 40 insertions(+), 39 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6bd2d0e5a..baedbca07 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 523d2e588..35280ab50 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -24,14 +24,14 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 with: platforms: linux/amd64,linux/arm64,linux/arm/v7 - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Inspect builder run: | echo "Name: ${{ steps.buildx.outputs.name }}" @@ -40,18 +40,18 @@ jobs: echo "Flags: ${{ steps.buildx.outputs.flags }}" echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push images - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . platforms: linux/amd64,linux/arm64,linux/arm/v7 @@ -83,7 +83,7 @@ jobs: contents: read steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v2 @@ -102,7 +102,7 @@ jobs: id: short-sha uses: benjlevesque/short-sha@v2.1 - name: Build and push images - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . platforms: linux/amd64 @@ -122,14 +122,14 @@ jobs: - name: Compute image tag name run: echo "IMAGE_TAG=$(echo $GITHUB_REF_NAME | cut -c 2-)" >> $GITHUB_ENV - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 with: platforms: linux/amd64,linux/arm64,linux/arm/v7 - name: Set up Docker Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Inspect builder run: | echo "Name: ${{ steps.buildx.outputs.name }}" @@ -138,18 +138,18 @@ jobs: echo "Flags: ${{ steps.buildx.outputs.flags }}" echo "Platforms: ${{ steps.buildx.outputs.platforms }}" - name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push images - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . platforms: linux/amd64,linux/arm64,linux/arm/v7 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 58d79fd40..52b2cf4e6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -30,13 +30,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: + # go-mockgen panics on Go 1.22.x, see https://github.com/derision-test/go-mockgen/issues/51 go-version: 1.21.x - name: Install Task - uses: arduino/setup-task@v1 + uses: arduino/setup-task@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Check Go module tidiness and generated files @@ -52,7 +53,7 @@ jobs: exit 1 fi - name: Run golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v4 with: version: latest args: --timeout=30m @@ -61,20 +62,20 @@ jobs: name: Test strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.platform }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Run tests with coverage run: go test -shuffle=on -v -race -coverprofile=coverage -covermode=atomic ./... - name: Upload coverage report to Codecov - uses: codecov/codecov-action@v1.5.0 + uses: codecov/codecov-action@v4 with: file: ./coverage flags: unittests @@ -101,20 +102,20 @@ jobs: name: Test Windows strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ windows-latest ] runs-on: ${{ matrix.platform }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Run tests with coverage run: go test -shuffle=on -v -coverprofile=coverage -covermode=atomic ./... - name: Upload coverage report to Codecov - uses: codecov/codecov-action@v1.5.0 + uses: codecov/codecov-action@v4 with: file: ./coverage flags: unittests @@ -139,7 +140,7 @@ jobs: name: Postgres strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} services: @@ -156,9 +157,9 @@ jobs: - 5432:5432 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Run tests with coverage @@ -175,16 +176,16 @@ jobs: name: MySQL strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ ubuntu-20.04 ] runs-on: ${{ matrix.platform }} steps: - name: Start MySQL server run: sudo systemctl start mysql - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Run tests with coverage @@ -200,14 +201,14 @@ jobs: name: SQLite - Go strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Run tests with coverage diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 45169f85c..7c84bdfc3 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -16,7 +16,7 @@ jobs: action: runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v3 + - uses: dessant/lock-threads@v5 with: github-token: ${{ github.token }} issue-inactive-days: '90' diff --git a/.github/workflows/scip.yml b/.github/workflows/scip.yml index 41d4c37e1..6b4559412 100644 --- a/.github/workflows/scip.yml +++ b/.github/workflows/scip.yml @@ -15,7 +15,7 @@ jobs: container: sourcegraph/scip-go steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set directory to safe for git run: git config --global --add safe.directory $GITHUB_WORKSPACE - name: Get src-cli diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml index 7031950e5..a83e4e2f6 100644 --- a/.github/workflows/shell.yml +++ b/.github/workflows/shell.yml @@ -12,6 +12,6 @@ jobs: name: Shellcheck runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run ShellCheck uses: ludeeus/action-shellcheck@master