diff --git a/.changes/unreleased/Dependency-20251101-000709.yaml b/.changes/unreleased/Dependency-20251101-000709.yaml new file mode 100644 index 0000000..2313700 --- /dev/null +++ b/.changes/unreleased/Dependency-20251101-000709.yaml @@ -0,0 +1,3 @@ +kind: Dependency +body: 'chore(deps): bump the github-actions group across 1 directory with 5 updates' +time: 2025-11-01T00:07:09.035073835Z diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index b0a5380..3816a83 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -40,11 +40,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -58,7 +58,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@v3 + uses: github/codeql-action/autobuild@v4 # â„šī¸ 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 @@ -71,6 +71,6 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/dependabot-changie.yaml b/.github/workflows/dependabot-changie.yaml index 1aacb80..199d686 100644 --- a/.github/workflows/dependabot-changie.yaml +++ b/.github/workflows/dependabot-changie.yaml @@ -15,7 +15,7 @@ jobs: if: github.actor == 'dependabot[bot]' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Fetch Dependabot metadata id: dependabot-metadata @@ -29,7 +29,7 @@ jobs: version: latest args: new --body "${{ github.event.pull_request.title }}" --kind Dependency - - uses: stefanzweifel/git-auto-commit-action@v7-next + - uses: stefanzweifel/git-auto-commit-action@v7.0.0 with: commit_message: "chore(deps): add changelog for dependabot updates" commit_user_name: "dependabot[bot]" diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 573b64f..a19d3fd 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -8,16 +8,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod - name: golangci-lint continue-on-error: true - uses: golangci/golangci-lint-action@v6 + uses: golangci/golangci-lint-action@v8 with: args: --issues-exit-code=0 --timeout=5m @@ -38,7 +38,7 @@ jobs: pull-requests: write actions: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6e0be15..98fddab 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod