diff --git a/.github/workflows/auto-describe-repos.yml b/.github/workflows/auto-describe-repos.yml index 294a5ea..11858f7 100644 --- a/.github/workflows/auto-describe-repos.yml +++ b/.github/workflows/auto-describe-repos.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: 🟢 Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 416ada1..af8d302 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,7 +28,7 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' }} steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Important: fetch the latest from main (in case fetch-team just pushed) ref: main diff --git a/.github/workflows/fetch-contributors.yml b/.github/workflows/fetch-contributors.yml index fc15215..74348fe 100644 --- a/.github/workflows/fetch-contributors.yml +++ b/.github/workflows/fetch-contributors.yml @@ -21,7 +21,7 @@ jobs: steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: # Important: fetch the latest from main (in case refresh-data.yml just pushed) ref: main diff --git a/.github/workflows/fetch-team.yml b/.github/workflows/fetch-team.yml index d38cf8e..4fa7bc4 100644 --- a/.github/workflows/fetch-team.yml +++ b/.github/workflows/fetch-team.yml @@ -20,7 +20,7 @@ jobs: steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: main fetch-depth: 1 diff --git a/.github/workflows/refresh-data.yml b/.github/workflows/refresh-data.yml index 90a3627..d396f58 100644 --- a/.github/workflows/refresh-data.yml +++ b/.github/workflows/refresh-data.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 📥 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: 🐍 Set up Python uses: actions/setup-python@v5