Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github: use stable version of GitHub actions #790

Merged
merged 1 commit into from
Feb 6, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/apt-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
test-docker-image: arm64v8/ubuntu:noble
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
test-docker-image: ubuntu:noble
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand All @@ -60,7 +60,7 @@ jobs:
if: ${{ ! steps.cache-deb.outputs.cache-hit }}
run: |
rake apt:build APT_TARGETS=${{ matrix.rake-job }}
- uses: actions/checkout@master
- uses: actions/checkout@v4
if: ${{ ! steps.cache-deb.outputs.cache-hit }}
with:
path: v6-test
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
- label: Ubuntu Noble amd64
test: downgrade-to-v4.sh
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.rake-job }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install cmake
run: |
brew install cmake
Expand All @@ -42,7 +42,7 @@ jobs:
needs: build
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-macos
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 90
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: cache msi
uses: actions/cache@v4
id: cache-msi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yum-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
test-docker-image: arm64v8/amazonlinux:2023
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/yum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
centos-stream: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
Expand All @@ -58,7 +58,7 @@ jobs:
if: ${{ ! steps.cache-rpm.outputs.cache-hit }}
run: |
rake yum:build YUM_TARGETS=${{ matrix.rake-job }}
- uses: actions/checkout@master
- uses: actions/checkout@v4
if: ${{ ! steps.cache-rpm.outputs.cache-hit }}
with:
path: v6-test
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
- label: AmazonLinux 2023 x86_64
test: downgrade-to-v4.sh
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.rake-job }}
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
rake-job: almalinux-9
lxc-image: images:almalinux/9
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ matrix.rake-job }}
Expand Down