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: |