Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- uses: azure/docker-login@v1
with: # This doesn't seem to work unless we point directly to the secrets
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand All @@ -27,7 +27,7 @@ jobs:
with:
ruby-version: 3.1
- run: gem install bundler
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
with:
fetch-depth: '0'
- name: Bump version and push tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rspec_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ${{ matrix.cfg.os }}
steps:
- name: Checkout current PR
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: Install ruby version ${{ matrix.cfg.ruby }}
uses: ruby/setup-ruby@v1
Expand Down
Loading