Skip to content

chore(deps): update actions/checkout action to v6 #3316

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #3316

Workflow file for this run

# Terraform Provider testing workflow.
name: Tests
# This GitHub action runs your tests for each pull request and push.
# Optionally, you can turn it on using a schedule for regular testing.
on:
pull_request_target:
types: [opened, synchronize]
paths-ignore:
- "README.md"
push:
branches:
- main
paths-ignore:
- "README.md"
# We test at a regular interval to ensure we are alerted to something breaking due
# to an API change, even if the code did not change.
schedule:
- cron: "0 0 * * *"
# Testing only needs permissions to read the repository contents.
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
# Ensure project builds before running testing matrix
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- id: check-access
if: github.event_name == 'pull_request_target'
uses: actions-cool/check-user-permission@v2
with:
require: write
username: ${{ github.triggering_actor }}
- name: Check User Permission
if: github.event_name == 'pull_request_target' && steps.check-access.outputs.require-result != 'true'
run: |
echo "User ${{ github.triggering_actor }} lacks the necessary rights on this repository."
echo "Their current access level: ${{ steps.checkAccess.outputs.user-permission }}"
echo "Initial trigger for this job: ${{ github.actor }}"
exit 1
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
cache: true
- run: go mod download
- run: go build -v .
- name: Run linters
uses: golangci/golangci-lint-action@v9
with:
version: latest
generate:
runs-on: ubuntu-latest
steps:
- id: check-access
if: github.event_name == 'pull_request_target'
uses: actions-cool/check-user-permission@v2
with:
require: write
username: ${{ github.triggering_actor }}
- name: Check User Permission
if: github.event_name == 'pull_request_target' && steps.check-access.outputs.require-result != 'true'
run: |
echo "User ${{ github.triggering_actor }} lacks the necessary rights on this repository."
echo "Their current access level: ${{ steps.checkAccess.outputs.user-permission }}"
echo "Initial trigger for this job: ${{ github.actor }}"
exit 1
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
cache: true
- name: Install uv
uses: astral-sh/setup-uv@v7
- uses: hashicorp/setup-terraform@v3
with:
terraform_wrapper: false
- run: make generate
- name: git diff
run: |
git diff --exit-code || \
(echo; echo "Unexpected difference in directories after code generation. Run 'make generate' command and commit."; exit 1)
# Run acceptance tests in a matrix with Terraform CLI versions
test:
name: Terraform Provider Acceptance Tests
needs: build
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
max-parallel: 1
matrix:
terraform:
- "1.13.*"
steps:
- id: check-access
if: github.event_name == 'pull_request_target'
uses: actions-cool/check-user-permission@v2
with:
require: write
username: ${{ github.triggering_actor }}
- name: Check User Permission
if: github.event_name == 'pull_request_target' && steps.check-access.outputs.require-result != 'true'
run: |
echo "User ${{ github.triggering_actor }} lacks the necessary rights on this repository."
echo "Their current access level: ${{ steps.checkAccess.outputs.user-permission }}"
echo "Initial trigger for this job: ${{ github.actor }}"
exit 1
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
cache: true
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ matrix.terraform }}
terraform_wrapper: false
- run: go mod download
- env:
TF_ACC: "1"
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_TEST_GITHUB_INSTALLATION_ID: ${{ secrets.SENTRY_TEST_GITHUB_INSTALLATION_ID }}
SENTRY_TEST_GITHUB_REPOSITORY_IDENTIFIER: ${{ secrets.SENTRY_TEST_GITHUB_REPOSITORY_IDENTIFIER }}
SENTRY_TEST_GITLAB_INSTALLATION_ID: ${{ secrets.SENTRY_TEST_GITLAB_INSTALLATION_ID }}
SENTRY_TEST_GITLAB_REPOSITORY_IDENTIFIER: ${{ secrets.SENTRY_TEST_GITLAB_REPOSITORY_IDENTIFIER }}
SENTRY_TEST_OPSGENIE_INTEGRATION_KEY: ${{ secrets.SENTRY_TEST_OPSGENIE_INTEGRATION_KEY }}
SENTRY_TEST_OPSGENIE_ORGANIZATION: ${{ secrets.SENTRY_TEST_OPSGENIE_ORGANIZATION }}
SENTRY_TEST_ORGANIZATION: ${{ secrets.SENTRY_TEST_ORGANIZATION }}
SENTRY_TEST_PAGERDUTY_ORGANIZATION: ${{ secrets.SENTRY_TEST_PAGERDUTY_ORGANIZATION }}
SENTRY_TEST_VSTS_INSTALLATION_ID: ${{ secrets.SENTRY_TEST_VSTS_INSTALLATION_ID }}
SENTRY_TEST_VSTS_REPOSITORY_IDENTIFIER: ${{ secrets.SENTRY_TEST_VSTS_REPOSITORY_IDENTIFIER }}
run: go test -v -cover -timeout 60m ./internal/provider/
timeout-minutes: 60