diff --git a/.github/workflows/create-issues.yml b/.github/workflows/create-issues.yml index 4c15f39..544bcb5 100644 --- a/.github/workflows/create-issues.yml +++ b/.github/workflows/create-issues.yml @@ -18,9 +18,9 @@ jobs: if: github.ref == 'refs/heads/main' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python 3.10 - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.10" - name: Install dependencies diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 228a80c..8f2296d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,10 +27,10 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Setup Pages uses: actions/configure-pages@v5 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 18.x - name: Install MyST Markdown @@ -38,7 +38,7 @@ jobs: - name: Build HTML Assets run: myst build --html - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: './_build/html' - name: Deploy to GitHub Pages diff --git a/.github/workflows/gha-pr-add-project.yml b/.github/workflows/gha-pr-add-project.yml index f4b80cb..e803530 100644 --- a/.github/workflows/gha-pr-add-project.yml +++ b/.github/workflows/gha-pr-add-project.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check Out Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Micromamba ${{ matrix.python-version }} uses: mamba-org/setup-micromamba@v2 @@ -27,7 +27,7 @@ jobs: shell: bash -l {0} run: python scripts/generate_pr_from_issue.py - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Create new project page via GitHub Actions" diff --git a/.github/workflows/pull-from-cookiecutter.yml b/.github/workflows/pull-from-cookiecutter.yml index be13fc6..d398f71 100644 --- a/.github/workflows/pull-from-cookiecutter.yml +++ b/.github/workflows/pull-from-cookiecutter.yml @@ -12,7 +12,7 @@ jobs: checkout: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install cookiecutter run: python -m pip install --user cookiecutter - name: Build Template @@ -20,7 +20,7 @@ jobs: - name: Create Pull Request if: github.ref == 'refs/heads/main' id: cpr - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: "Latest data: ${{ env.NOW }}"