From d3bddadd9fd603ad3cfd1f6f54e247f7d5315501 Mon Sep 17 00:00:00 2001 From: MikkelHebel Date: Mon, 20 Jul 2026 19:24:55 +0200 Subject: [PATCH] chore: bump action dependencies to latest pinned versions --- .github/workflows/configure-challs.yml | 6 +++--- .github/workflows/configure-pages.yml | 6 +++--- .github/workflows/create-chall.yml | 10 +++++----- .github/workflows/render-templates.yml | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/configure-challs.yml b/.github/workflows/configure-challs.yml index c1657d0..16edab1 100644 --- a/.github/workflows/configure-challs.yml +++ b/.github/workflows/configure-challs.yml @@ -62,7 +62,7 @@ jobs: changes: ${{ steps.check-changes.outputs.changes }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7.0.1 - name: Ensure submodules are fetched if: ${{ inputs.fetch-submodules == true }} run: git submodule update --init --recursive @@ -160,7 +160,7 @@ jobs: runs-on: ${{ inputs.runs-on || 'ubuntu-latest' }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7.0.1 - name: Ensure submodules are fetched if: ${{ inputs.fetch-submodules == true }} run: git submodule update --init --recursive @@ -181,7 +181,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7.0.0 with: python-version: "3.x" - name: Install uv diff --git a/.github/workflows/configure-pages.yml b/.github/workflows/configure-pages.yml index bb4c376..d38feb6 100644 --- a/.github/workflows/configure-pages.yml +++ b/.github/workflows/configure-pages.yml @@ -55,7 +55,7 @@ jobs: changes: ${{ steps.check-changes.outputs.changes }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7.0.1 - name: Ensure submodules are fetched if: ${{ inputs.fetch-submodules == true }} run: git submodule update --init --recursive @@ -116,14 +116,14 @@ jobs: runs-on: ${{ inputs.runs-on || 'ubuntu-latest' }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7.0.1 - name: Ensure submodules are fetched if: ${{ inputs.fetch-submodules == true }} run: git submodule update --init --recursive - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7.0.0 with: python-version: "3.x" - name: Install uv diff --git a/.github/workflows/create-chall.yml b/.github/workflows/create-chall.yml index e0027d5..298a95c 100644 --- a/.github/workflows/create-chall.yml +++ b/.github/workflows/create-chall.yml @@ -119,7 +119,7 @@ jobs: steps: # Checkout repository - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7.0.1 with: ref: ${{ github.head_ref }} - name: Ensure submodules are fetched @@ -128,7 +128,7 @@ jobs: # Install python and dependencies - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7.0.0 with: python-version: "3.x" @@ -215,7 +215,7 @@ jobs: # Create missing labels - name: Create missing labels - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: github-token: ${{ github.token }} script: | @@ -250,7 +250,7 @@ jobs: # Create milestone if it doesn't exist - name: Create milestone if not exists - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: github-token: ${{ github.token }} script: | @@ -278,7 +278,7 @@ jobs: # Open pull request - name: Open pull request id: pr - uses: actions/github-script@v8 + uses: actions/github-script@v9.0.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | diff --git a/.github/workflows/render-templates.yml b/.github/workflows/render-templates.yml index 83f11b4..dcb5c34 100644 --- a/.github/workflows/render-templates.yml +++ b/.github/workflows/render-templates.yml @@ -52,7 +52,7 @@ jobs: runs-on: ${{ inputs.runs-on || 'ubuntu-latest' }} steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v7.0.1 - name: Ensure submodules are fetched if: ${{ inputs.fetch-submodules == true }} @@ -60,7 +60,7 @@ jobs: # Install python and dependencies - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7.0.0 with: python-version: "3.x" - name: Install uv