diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe1a114..8f219a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,14 +14,14 @@ on: branches: [ main ] jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: "Checkout workspace-data-sync source code" - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: "Docker prepare" run: docker image prune -a -f - name: "Docker quay.io Login" - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io username: ${{ secrets.QUAY_USERNAME }} diff --git a/.github/workflows/make-branch.yml b/.github/workflows/make-branch.yml index 80e4fa8..e0011f2 100644 --- a/.github/workflows/make-branch.yml +++ b/.github/workflows/make-branch.yml @@ -23,9 +23,9 @@ on: jobs: build: name: Create branch - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Create branch diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 19a1641..8b2b3c9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -13,10 +13,10 @@ on: branches: [ main ] jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: "Checkout workspace-data-sync source code" - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: "Run build script" run: ./build.sh \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cdb851a..05e27ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,14 +13,14 @@ on: branches: [ release ] jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: "Checkout workspace-data-sync source code" - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: "Docker prepare" run: docker image prune -a -f - name: "Docker quay.io Login" - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io username: ${{ secrets.QUAY_USERNAME }}