diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5e30fab8d..b82e9f388 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/deploy-runners.yml b/.github/workflows/deploy-runners.yml index f9d786650..2ee8455f4 100644 --- a/.github/workflows/deploy-runners.yml +++ b/.github/workflows/deploy-runners.yml @@ -20,7 +20,7 @@ jobs: - name: get container name run: | echo "containername=${{ matrix.module }}" | sed 's/\//-/g' > $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Docker meta (${{ matrix.module }}) diff --git a/.github/workflows/deploy-server.yml b/.github/workflows/deploy-server.yml index a6f8757fe..4b067c686 100644 --- a/.github/workflows/deploy-server.yml +++ b/.github/workflows/deploy-server.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Docker meta id: meta uses: docker/metadata-action@v4 diff --git a/.github/workflows/deploy-workers.yml b/.github/workflows/deploy-workers.yml index bf9d2811c..e560d8574 100644 --- a/.github/workflows/deploy-workers.yml +++ b/.github/workflows/deploy-workers.yml @@ -20,7 +20,7 @@ jobs: - name: get container name run: | echo "containername=${{ matrix.module }}" | sed 's/\//-/g' > $GITHUB_ENV - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} - name: Docker meta (${{ matrix.module }}) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index c4b6af867..afb634584 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -11,7 +11,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install modules working-directory: ./web run: npm ci diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index ccdddc056..a3fa2f012 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -13,7 +13,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install modules working-directory: ./web run: npm ci diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 4a6f2f69c..ca68e44bb 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: 1.22 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install modules working-directory: ./web run: npm ci