diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a433ca6..adc3831 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,12 +27,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 # setup-python rather than the runner's own python3: pip cannot install # into a system Python that is marked externally managed (PEP 668). - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: "3.x" @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 - name: Set up Ruby uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9008c7c..0374b4d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 # 4.0 to match the Ruby that wrote Gemfile.lock (BUNDLED WITH 4.0.6): # an older Ruby ships an older RubyGems that does not understand the @@ -39,7 +39,7 @@ jobs: run: sudo apt-get update && sudo apt-get install -y imagemagick - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: "3.x"