From faf971e0b7014db78280efa0d21da171ea84bbbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 16:47:31 +0000 Subject: [PATCH] Bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/add-to-project](https://github.com/actions/add-to-project) | `0.3.0` | `1.0.2` | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `7` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `41` | `45` | Updates `actions/add-to-project` from 0.3.0 to 1.0.2 - [Release notes](https://github.com/actions/add-to-project/releases) - [Commits](https://github.com/actions/add-to-project/compare/v0.3.0...v1.0.2) Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `peter-evans/create-pull-request` from 5 to 7 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v5...v7) Updates `tj-actions/changed-files` from 41 to 45 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v41...v45) --- updated-dependencies: - dependency-name: actions/add-to-project dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/add_to_project.yml | 2 +- .github/workflows/commit.yml | 6 +++--- .github/workflows/snyk.yml | 2 +- .github/workflows/update_publishers.yml | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/add_to_project.yml b/.github/workflows/add_to_project.yml index 60fa06c8..6962b078 100644 --- a/.github/workflows/add_to_project.yml +++ b/.github/workflows/add_to_project.yml @@ -10,7 +10,7 @@ jobs: name: Add issue to project runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v0.3.0 + - uses: actions/add-to-project@v1.0.2 with: project-url: 'https://github.com/orgs/GSA/projects/11/views/1' github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index b62d26d9..8dd1b58b 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -14,8 +14,8 @@ jobs: python-version: ['3.x'] steps: - name: checkout - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: lint @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: test run: make build test - name: test extension diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 6ec44123..748484b3 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -63,7 +63,7 @@ jobs: - name: Create Pull Request if: ${{ failure() && github.event_name == 'schedule' }} id: scpr - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.ADD_TO_PROJECT_PAT }} commit-message: Update Pip Requirements diff --git a/.github/workflows/update_publishers.yml b/.github/workflows/update_publishers.yml index de28897d..3a510a20 100644 --- a/.github/workflows/update_publishers.yml +++ b/.github/workflows/update_publishers.yml @@ -15,12 +15,12 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 2 - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v45 - name: Check if inventory_publishers has changed if: contains(steps.changed-files.outputs.modified_files, 'config/data/inventory_publishers.csv') run: | @@ -50,12 +50,12 @@ jobs: - update-publishers-staging steps: - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 2 - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v45 - name: Check if inventory_publishers has changed if: contains(steps.changed-files.outputs.modified_files, 'config/data/inventory_publishers.csv') run: |